]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Update version flags
[gpl/argeo-slc.git] / org.argeo.slc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <packaging>pom</packaging>
9 <name>Argeo SLC</name>
10 <version>0.6.0</version>
11 <description>SLC Distribution</description>
12 <url>
13 http://www.argeo.org/projects/slc/${project.artfactId}/${project.version}
14 </url>
15 <!--
16 <modules>
17 <module>../org.argeo.slc.core</module>
18 <module>../org.argeo.slc.example</module>
19 </modules>
20 -->
21 <scm>
22 <connection>
23 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
24 </connection>
25 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
26 </scm>
27 <issueManagement>
28 <system>Bugzilla</system>
29 <url>https://www.argeo.org/bugzilla/</url>
30 </issueManagement>
31 <licenses>
32 <license>
33 <name>Apache 2</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39 <organization>
40 <name>Argeo</name>
41 <url>http://www.argeo.org</url>
42 </organization>
43 <developers>
44 <developer>
45 <id>mbaudier</id>
46 <name>Mathieu Baudier</name>
47 <email>mbaudier@argeo.org</email>
48 <organization>Argeo</organization>
49 <organizationUrl>http://www.argeo.org</organizationUrl>
50 <roles>
51 <role>architect</role>
52 <role>developer</role>
53 </roles>
54 <timezone>+1</timezone>
55 </developer>
56 </developers>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-compiler-plugin</artifactId>
62 <configuration>
63 <source>1.5</source>
64 <target>1.5</target>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-source-plugin</artifactId>
70 <executions>
71 <execution>
72 <id>attach-sources</id>
73 <phase>verify</phase>
74 <goals>
75 <goal>jar</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-javadoc-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>attach-javadoc</id>
86 <phase>verify</phase>
87 <goals>
88 <goal>jar</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 <!--
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-site-plugin</artifactId>
97 <executions>
98 <execution>
99 <id>attach-javadoc</id>
100 <phase>verify</phase>
101 <goals>
102 <goal>jar</goal>
103 </goals>
104 </execution>
105 </executions>
106 </plugin>
107 -->
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-deploy-plugin</artifactId>
111 <configuration>
112 <updateReleaseInfo>true</updateReleaseInfo>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-assembly-plugin</artifactId>
118 <inherited>false</inherited>
119 <configuration>
120 <descriptors>
121 <descriptor>
122 src/assembly/with-dependencies.xml
123 </descriptor>
124 </descriptors>
125 </configuration>
126 <executions>
127 <execution>
128 <id>assembly-base</id>
129 <phase>verify</phase>
130 <inherited>false</inherited>
131 <goals>
132 <goal>single</goal>
133 </goals>
134 <configuration>
135 <descriptors>
136 <descriptor>
137 src/assembly/base.xml
138 </descriptor>
139 </descriptors>
140 </configuration>
141 </execution>
142 </executions>
143 </plugin>
144 </plugins>
145 </build>
146 <reporting>
147 <plugins>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-surefire-report-plugin</artifactId>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-javadoc-plugin</artifactId>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-changelog-plugin</artifactId>
159 </plugin>
160 <plugin>
161 <groupId>org.codehaus.mojo</groupId>
162 <artifactId>cobertura-maven-plugin</artifactId>
163 </plugin>
164 </plugins>
165 </reporting>
166 <dependencyManagement>
167 <dependencies>
168 <dependency>
169 <groupId>javax.transaction</groupId>
170 <artifactId>jta</artifactId>
171 <version>1.0.1</version>
172 </dependency>
173 <dependency>
174 <groupId>org.dbunit</groupId>
175 <artifactId>dbunit</artifactId>
176 <version>2.2</version>
177 <exclusions>
178 <exclusion>
179 <groupId>junit-addons</groupId>
180 <artifactId>junit-addons</artifactId>
181 </exclusion>
182 <exclusion>
183 <groupId>poi</groupId>
184 <artifactId>poi</artifactId>
185 </exclusion>
186 </exclusions>
187 </dependency>
188 <dependency>
189 <groupId>log4j</groupId>
190 <artifactId>log4j</artifactId>
191 <version>1.2.14</version>
192 </dependency>
193 <dependency>
194 <groupId>org.hibernate</groupId>
195 <artifactId>hibernate</artifactId>
196 <version>3.2.5.ga</version>
197 </dependency>
198 <dependency>
199 <groupId>org.springframework</groupId>
200 <artifactId>spring</artifactId>
201 <version>2.0.6</version>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.ant</groupId>
205 <artifactId>ant</artifactId>
206 <version>1.7.0</version>
207 </dependency>
208 <dependency>
209 <groupId>org.apache.commons</groupId>
210 <artifactId>commons-io</artifactId>
211 <version>1.3.2</version>
212 </dependency>
213 <dependency>
214 <groupId>org.dbunit</groupId>
215 <artifactId>dbunit</artifactId>
216 <version>2.2</version>
217 </dependency>
218 <dependency>
219 <groupId>junit</groupId>
220 <artifactId>junit</artifactId>
221 <version>3.8.2</version>
222 </dependency>
223 <dependency>
224 <groupId>hsqldb</groupId>
225 <artifactId>hsqldb</artifactId>
226 <version>1.8.0.9</version>
227 </dependency>
228 </dependencies>
229 </dependencyManagement>
230 <repositories>
231 <repository>
232 <id>central</id>
233 <url>http://www.argeo.org/maven/repository</url>
234 </repository>
235 </repositories>
236 <distributionManagement>
237 <repository>
238 <id>argeo</id>
239 <!-- Temporary hack before having the build on the server itself -->
240 <url>file:///D:\dev\test\mavenArgeoLocalRep</url>
241 </repository>
242 </distributionManagement>
243 </project>