This repository was archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
167 lines (149 loc) · 5.32 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!--
Copyright 2011 Normation SAS
This file is part of Rudder.
Rudder is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
In accordance with the terms of section 7 (7. Additional Terms.) of
the GNU General Public License version 3, the copyright holders add
the following Additional permissions:
Notwithstanding to the terms of section 5 (5. Conveying Modified Source
Versions) and 6 (6. Conveying Non-Source Forms.) of the GNU General
Public License version 3, when you create a Related Module, this
Related Module is not considered as a part of the work and may be
distributed under the license agreement of your choice.
A "Related Module" means a set of sources files including their
documentation that, without modification of the Source Code, enables
supplementary functions or services in addition to those offered by
the Software.
Rudder is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Rudder. If not, see <http://www.gnu.org/licenses/>.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.normation</groupId>
<artifactId>parent-pom</artifactId>
<version>3.2.0~alpha1-SNAPSHOT</version>
</parent>
<artifactId>cfclerk</artifactId>
<!-- ==================================== PROJECT INFORMATION ==================================== -->
<description>
This is the API/Core lib module that writes the promises of nodes
</description>
<url>http://cfclerk.org</url>
<inceptionYear>2010</inceptionYear>
<organization>
<name>Normation SA - Open Source Projects</name>
<url>http://normation.com/opensource</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>
Cf-Clerck open source software is licensed under an Apache 2.0 license.
</comments>
</license>
</licenses>
<developers>
<developer>
<id>ncharles</id>
<name>Nicolas Charles</name>
<timezone>+1</timezone>
<email>ncharles [at] normation.com</email>
<roles>
<role>Project Leader</role>
</roles>
</developer>
<developer>
<id>fanf42</id>
<name>Francois Armand</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>jooooooon</id>
<name>Jonathan Clarke</name>
<timezone>+1</timezone>
</developer>
</developers>
<!-- TODO -->
<!--
<mailingLists>
<mailingList>
<name>TODO</name>
<archive>http://groups.google.com/group/liftweb</archive>
<post>[email protected]</post>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
</mailingList>
</mailingLists>
-->
<!-- ==================================== /PROJECT INFORMATION ==================================== -->
<repositories>
<repository>
<id>rudder-release</id>
<url>http://www.rudder-project.org/maven-releases/</url>
<layout>default</layout>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>rudder-snapshot</id>
<url>http://www.rudder-project.org/maven-snapshots/</url>
<layout>default</layout>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.normation</groupId>
<artifactId>utils</artifactId>
<version>${rudder-version}</version>
</dependency>
<dependency>
<groupId>com.normation</groupId>
<artifactId>eventlog-api</artifactId>
<version>${rudder-version}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>stringtemplate</artifactId>
<version>3.3.0~alpha1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io-version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit-version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.normation</groupId>
<artifactId>spring-run-dependencies</artifactId>
<version>${spring-run-dep-version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>