adding site content
[taxeditor.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <project xmlns="http://maven.apache.org/POM/4.0.0"
5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
7 <modelVersion>4.0.0</modelVersion>
8 <groupId>eu.etaxonomy</groupId>
9 <artifactId>taxeditor-parent</artifactId>
10 <version>2.1</version>
11
12 <name>EDIT Taxonomic Editor</name>
13 <description>The EDIT Taxonomic Editor for EDIT's platform for cybertaxonomy</description>
14 <url>http://wp5.e-taxonomy.eu/cdmlib/site/</url>
15 <packaging>pom</packaging>
16 <modules>
17 <module>taxeditor-store</module>
18 <module>taxeditor-navigation</module>
19 <module>taxeditor-editor</module>
20 <module>taxeditor-bulkeditor</module>
21 <module>taxeditor-printpublisher</module>
22 <module>taxeditor-annotatedlineeditor</module>
23 <module>taxeditor-application</module>
24 </modules>
25
26 <licenses>
27 <license>
28 <name>Mozilla Public License Version 1.1</name>
29 <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
30 <distribution>repo</distribution>
31 </license>
32 </licenses>
33
34 <developers>
35 <developer>
36 <!-- your SVN account id please! -->
37 <id>p.ciardelli</id>
38 <name>
39 Pepe Ciardelli
40 </name>
41 <email>p.ciardelli [at] bgbm.org</email>
42 <organization>
43 Botanical Garden Botanical Museum Berlin
44 </organization>
45 <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
46 <timezone>+1</timezone>
47 <roles>
48 <role>developer</role>
49 </roles>
50 <url></url>
51 </developer>
52 <developer>
53 <!-- your SVN account id please! -->
54 <id>n.hoffmann</id>
55 <name>
56 Niels Hoffmann
57 </name>
58 <email>n.hoffmann [at] bgbm.org</email>
59 <organization>
60 Botanic Garden Botanical Museum Berlin
61 </organization>
62 <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
63 <timezone>+1</timezone>
64 <roles>
65 <role>developer</role>
66 </roles>
67 <url></url>
68 </developer>
69 </developers>
70
71 <issueManagement>
72 <system>Trac</system>
73 <url>http://dev.e-taxonomy.eu/trac/</url>
74 </issueManagement>
75
76
77 <!-- **** REPOSITORIES **** -->
78 <repositories>
79 <!-- sun repository -->
80 <repository>
81 <id>java.net</id>
82 <url>http://download.java.net/maven/1/</url>
83 <layout>legacy</layout>
84 </repository>
85 <!-- the cdm internal repository -->
86 <repository>
87 <id>EditRepository</id>
88 <url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
89 </repository>
90 <!-- apache incubating repository -->
91 <repository>
92 <id>ApacheIncubating</id>
93 <url>http://people.apache.org/repo/m2-incubating-repository/</url>
94 </repository>
95 <!-- Neccessary for hibernate-envers -->
96 <repository>
97 <releases>
98 <enabled>true</enabled>
99 <updatePolicy>always</updatePolicy>
100 <checksumPolicy>warn</checksumPolicy>
101 </releases>
102 <snapshots>
103 <enabled>false</enabled>
104 <updatePolicy>never</updatePolicy>
105 <checksumPolicy>fail</checksumPolicy>
106 </snapshots>
107 <id>jboss-repository</id>
108 <name>JBoss Repository</name>
109 <url>http://repository.jboss.com/maven2</url>
110 </repository>
111 </repositories>
112
113 <build>
114 <plugins>
115 <plugin>
116 <artifactId>maven-compiler-plugin</artifactId>
117 <configuration>
118 <source>1.5</source>
119 <target>1.5</target>
120 </configuration>
121 </plugin>
122 <plugin>
123 <artifactId>maven-surefire-plugin</artifactId>
124 <configuration>
125 <includes>
126 <include>**/*Test.java</include>
127 </includes>
128 <systemProperties>
129 <property>
130 <name>hibernate.connection.driver_class</name>
131 <value>${hibernate.connection.driver_class}</value>
132 </property>
133 <property>
134 <name>hibernate.connection.url</name>
135 <value>${hibernate.connection.url}</value>
136 </property>
137 <property>
138 <name>hibernate.connection.username</name>
139 <value>${hibernate.connection.username}</value>
140 </property>
141 <property>
142 <name>hibernate.connection.password</name>
143 <value>${hibernate.connection.password}</value>
144 </property>
145 </systemProperties>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-site-plugin</artifactId>
151 <version>2.0</version>
152 <configuration>
153 <locales>en</locales>
154 </configuration>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-source-plugin</artifactId>
159 <executions>
160 <execution>
161 <id>attach-sources</id>
162 <phase>verify</phase>
163 <goals>
164 <goal>jar</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-javadoc-plugin</artifactId>
172 <configuration>
173 <aggregate>true</aggregate>
174 <stylesheet>maven</stylesheet>
175 </configuration>
176 </plugin>
177 <plugin>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-eclipse-plugin</artifactId>
180 <configuration>
181 <downloadSources>true</downloadSources>
182 <downloadJavadocs>true</downloadJavadocs>
183 <additionalProjectnatures>
184 <projectnature>org.eclipse.pde.PluginNature</projectnature>
185 </additionalProjectnatures>
186 </configuration>
187 </plugin>
188
189 </plugins>
190 </build>
191
192 <reporting>
193 <plugins>
194 <plugin>
195 <!-- you will want to start by publishing your classes' Javadocs -->
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-javadoc-plugin</artifactId>
198 <configuration>
199 <links>
200 <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
201 <link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
202 <link>http://www.hibernate.org/hib_docs/v3/api/</link>
203 <!-- more libraries? -->
204 </links>
205 </configuration>
206 </plugin>
207 <plugin>
208 <!-- this will generate an indexed and cross-referenced HTML version of your source code -->
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-jxr-plugin</artifactId>
211 </plugin>
212 <plugin>
213 <!-- if you use @todo tags to remind you of things to be done (which is a good coding practice), the taglist report will generate a list of all the items marked @todo or TODO -->
214 <groupId>org.codehaus.mojo</groupId>
215 <artifactId>taglist-maven-plugin</artifactId>
216 </plugin>
217 <plugin>
218 <!-- Test coverage can be a useful indication of the quality of your unit tests. It basically tells you how much of your code is actually run by your unit tests, which, in turn, can give you a good idea of the tests' quality -->
219 <groupId>org.codehaus.mojo</groupId>
220 <artifactId>cobertura-maven-plugin</artifactId>
221 <!--
222 <executions>
223 <execution>
224 <id>clean</id>
225 <phase>clean</phase>
226 <goals>
227 <goal>clean</goal>
228 </goals>
229 </execution>
230 </executions>
231 -->
232 </plugin>
233 <!--
234 <plugin>
235 <groupId>org.apache.maven.plugins</groupId>
236 <artifactId>maven-project-info-reports-plugin</artifactId>
237 <reportSets>
238 <reportSet>
239 <reports>
240 <report>dependencies</report>
241 <report>project-team</report>
242 <report>mailing-list</report>
243 <report>cim</report>
244 <report>issue-tracking</report>
245 <report>license</report>
246 <report>scm</report>
247 </reports>
248 </reportSet>
249 </reportSets>
250 </plugin> -->
251 <!-- The changes-maven-plugin plug-in uses a special XML file (src/changes/changes.xml) to track releases and changes in each release -->
252 <!--
253 <plugin>
254 <groupId>org.codehaus.mojo</groupId>
255 <artifactId>changes-maven-plugin</artifactId>
256 </plugin>
257 <plugin>
258 <artifactId>maven-surefire-plugin</artifactId>
259 </plugin>
260 -->
261 <!-- The changelog plug-in generates a nice report describing which files have been changed and by whom -->
262 <!--
263 <plugin>
264 <groupId>org.codehaus.mojo</groupId>
265 <artifactId>changelog-maven-plugin</artifactId>
266 </plugin>
267 -->
268 </plugins>
269 </reporting>
270
271 <!-- DISTRIBUTION MANAGEMENT -->
272 <distributionManagement>
273 <site>
274 <id>edit-wp5-taxeditor</id>
275 <url>
276 scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/taxeditor/site
277 </url>
278 </site>
279 <repository>
280 <id>edit-wp5</id>
281 <name>Edit Maven Repository</name>
282 <url>
283 scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/cdmlib/mavenrepo
284 </url>
285 </repository>
286 </distributionManagement>
287
288 <!-- **** DEPENDENCIES **** -->
289 <dependencies>
290 <dependency>
291 <groupId>org.unitils</groupId>
292 <artifactId>unitils</artifactId>
293 </dependency>
294 <dependency>
295 <groupId>junit</groupId>
296 <artifactId>junit</artifactId>
297 </dependency>
298 <dependency>
299 <groupId>log4j</groupId>
300 <artifactId>log4j</artifactId>
301 </dependency>
302 </dependencies>
303
304 <dependencyManagement>
305 <dependencies>
306 <dependency>
307 <groupId>eu.etaxonomy</groupId>
308 <artifactId>taxeditor-store</artifactId>
309 <version>${project.version}</version>
310 </dependency>
311 <dependency>
312 <groupId>eu.etaxonomy</groupId>
313 <artifactId>taxeditor-navigation</artifactId>
314 <version>${project.version}</version>
315 </dependency>
316 <dependency>
317 <groupId>eu.etaxonomy</groupId>
318 <artifactId>taxeditor-editor</artifactId>
319 <version>${project.version}</version>
320 </dependency>
321 <dependency>
322 <groupId>eu.etaxonomy</groupId>
323 <artifactId>taxeditor-bulkeditor</artifactId>
324 <version>${project.version}</version>
325 </dependency>
326 <dependency>
327 <groupId>eu.etaxonomy</groupId>
328 <artifactId>taxeditor-application</artifactId>
329 <version>${project.version}</version>
330 </dependency>
331
332 <!-- ******* VARIOUS ******* -->
333 <dependency>
334 <groupId>log4j</groupId>
335 <artifactId>log4j</artifactId>
336 <version>1.2.15</version>
337 </dependency>
338 <!-- hibernate 3.4 uses slf4j -->
339 <dependency>
340 <groupId>org.slf4j</groupId>
341 <artifactId>slf4j-log4j12</artifactId>
342 <version>1.5.2</version>
343 </dependency>
344 <dependency>
345 <groupId>junit</groupId>
346 <artifactId>junit</artifactId>
347 <version>4.5</version>
348 <scope>test</scope>
349 </dependency>
350 <dependency>
351 <groupId>org.unitils</groupId>
352 <artifactId>unitils</artifactId>
353 <version>2.2</version>
354 <scope>test</scope>
355 </dependency>
356 <dependency>
357 <groupId>org.dbunit</groupId>
358 <artifactId>dbunit</artifactId>
359 <version>2.4.4</version>
360 <scope>test</scope>
361 </dependency>
362 </dependencies>
363 </dependencyManagement>
364
365 </project>