Project

General

Profile

Download (9.88 KB) Statistics
| Branch: | Tag: | Revision:
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>cdmParent</artifactId>
10
	<version>${cdmlib.version}</version>
11
	<description>
12
		Parent project for all EDIT common data model projects
13
	</description>
14
	<url>http://wp5.e-taxonomy.eu/cdmlib/site/</url>
15
	<packaging>pom</packaging>
16
	<properties>
17
		<cdmlib.version>0.5.0</cdmlib.version>
18
		<spring.version>2.5</spring.version>
19
	</properties>
20

    
21
	<mailingLists>
22
		<mailingList>
23
			<name>dev-edit</name>
24
			<subscribe>
25
				https://webmail.mnhn.fr/wws/subrequest/dev-edit
26
			</subscribe>
27
			<unsubscribe>
28
				https://webmail.mnhn.fr/wws/sigrequest/dev-edit
29
			</unsubscribe>
30
			<post>dev-edit@mnhn.fr</post>
31
			<archive>https://webmail.mnhn.fr/wws/arc/dev-edit/</archive>
32
		</mailingList>
33
		<mailingList>
34
			<name>cdm-edit</name>
35
			<post>cdm-edit@mnhn.fr</post>
36
			<subscribe>
37
				https://webmail.mnhn.fr/wws/subrequest/cdm-edit
38
			</subscribe>
39
			<unsubscribe>
40
				https://webmail.mnhn.fr/wws/sigrequest/cdm-edit
41
			</unsubscribe>
42
			<archive>https://webmail.mnhn.fr/wws/arc/cdm-edit/</archive>
43
		</mailingList>
44
	</mailingLists>
45
	<licenses>
46
		<license>
47
			<name>Mozilla Public License Version 1.1</name>
48
			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
49
			<distribution>repo</distribution>
50
		</license>
51
	</licenses>
52
	<developers>
53
		<developer>
54
			<!-- your SVN account id please! -->
55
			<id>m.doering</id>
56
			<email>m.doering [at] bgbm.org</email>
57
			<organization>
58
				Botanical Garden Botanical Museum Berlin
59
			</organization>
60
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
61
			<timezone>+1</timezone>
62
			<url>http://www.bgbm.org/BGBM/staff/Wiss/Doering/</url>
63
		</developer>
64
		<developer>
65
			<!-- your SVN account id please! -->
66
			<id>a.mueller</id>
67
			<name>
68
				Andreas M&uuml;ller
69
			</name>
70
			<email>a.mueller [at] bgbm.org</email>
71
			<organization>
72
				Botanical Garden Botanical Museum Berlin
73
			</organization>
74
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
75
			<timezone>+1</timezone>
76
			<roles>
77
				<role>developer</role>
78
			</roles>
79
			<url></url>
80
		</developer>
81
		<developer>
82
			<!-- your SVN account id please! -->
83
			<id>a.kohlbecker</id>
84
			<name>
85
				Andreas Kohlbecker
86
			</name>
87
			<email>a.kohlbecker [at] bgbm.org</email>
88
			<organization>
89
				Botanical Garden Botanical Museum Berlin
90
			</organization>
91
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
92
			<timezone>+1</timezone>
93
			<roles>
94
				<role>developer</role>
95
			</roles>
96
			<url></url>
97
		</developer>
98
		
99
		<developer>
100
			<!-- your SVN account id please! -->
101
			<id>p.ciardelli</id>
102
			<name>
103
				Pepe Ciardelli
104
			</name>
105
			<email>p.ciardelli [at] bgbm.org</email>
106
			<organization>
107
				Botanical Garden Botanical Museum Berlin
108
			</organization>
109
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
110
			<timezone>+1</timezone>
111
			<roles>
112
				<role>developer</role>
113
			</roles>
114
			<url></url>
115
		</developer>
116
		<developer>
117
			<!-- your SVN account id please! -->
118
			<id>DavidTaylor</id>
119
			<name>
120
				Dave Taylor
121
			</name>
122
			<email>D.Taylor [at] kew.org</email>
123
			<organization>
124
				Royal Botanic Gardens, Kew
125
			</organization>
126
			<organizationUrl>http://www.kew.org/computing/</organizationUrl>
127
			<timezone>+1</timezone>
128
			<roles>
129
				<role>developer</role>
130
			</roles>
131
			<url></url>
132
		</developer>
133
	</developers>
134
	<contributors>
135
		<contributor>
136
			<name>Test-Contributor</name>
137
		</contributor>
138
	</contributors>
139
	<issueManagement>
140
		<system>Trac</system>
141
		<url>http://dev.e-taxonomy.eu/trac/</url>
142
	</issueManagement>
143
	
144
	<!-- **** REPOSITORIES **** -->
145
	<repositories>
146
		<!-- sun repository -->
147
		<repository>
148
			<id>java.net</id>
149
			<url>http://download.java.net/maven/1/</url>
150
			<layout>legacy</layout>
151
		</repository>
152
		<!-- the cdm internal repository -->
153
		<repository>
154
			<id>EditRepository</id>
155
			<url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
156
		</repository>
157

    
158
	</repositories>
159

    
160
	<!-- **** PLUGINS **** -->
161
	<build>
162
		<plugins>
163
			<plugin>
164
				<artifactId>maven-compiler-plugin</artifactId>
165
				<configuration>
166
					<source>1.5</source>
167
					<target>1.5</target>
168
				</configuration>
169
			</plugin>
170
			<plugin>
171
				<groupId>org.apache.maven.plugins</groupId>
172
				<artifactId>maven-site-plugin</artifactId>
173
				<configuration>
174
					<locales>en</locales>
175
				</configuration>
176
			</plugin>
177
			<plugin>
178
				<groupId>org.apache.maven.plugins</groupId>
179
				<artifactId>maven-source-plugin</artifactId>
180
				<executions>
181
					<execution>
182
						<id>attach-sources</id>
183
						<phase>verify</phase>
184
						<goals>
185
							<goal>jar</goal>
186
						</goals>
187
					</execution>
188
				</executions>
189
			</plugin>
190
			<plugin>
191
				<groupId>org.apache.maven.plugins</groupId>
192
				<artifactId>maven-javadoc-plugin</artifactId>
193
				<configuration>
194
					<aggregate>true</aggregate>
195
					<stylesheet>maven</stylesheet>
196
				</configuration>
197
			</plugin>
198
		</plugins>
199
		<!--  -->
200
		<extensions>
201
			<extension>
202
				<groupId>org.apache.maven.wagon</groupId>
203
				<artifactId>wagon-scm</artifactId>
204
				<version>1.0-alpha-5</version>
205
			</extension>
206
			<!--
207
				<extension>
208
				<groupId>org.apache.maven.wagon</groupId>
209
				<artifactId>wagon-ssh-external</artifactId>
210
				<version>1.0-alpha-5</version>
211
				</extension>
212
			-->
213
			<extension>
214
				<groupId>org.apache.maven.scm</groupId>
215
				<artifactId>maven-scm-manager-plexus</artifactId>
216
				<version>1.0</version>
217
			</extension>
218
			<extension>
219
				<groupId>org.apache.maven.scm</groupId>
220
				<artifactId>maven-scm-provider-svnexe</artifactId>
221
				<version>1.0</version>
222
			</extension>
223
			<!-- WebDAV plugin to upload snapshots -->
224
			<extension>
225
				<groupId>org.apache.maven.wagon</groupId>
226
				<artifactId>wagon-webdav</artifactId>
227
				<version>1.0-beta-2</version>
228
			</extension>
229
		</extensions>
230
	</build>
231

    
232
	<reporting>
233
		<plugins>
234
			<plugin>
235
				<!-- you will want to start by publishing your classes' Javadocs -->
236
				<groupId>org.apache.maven.plugins</groupId>
237
				<artifactId>maven-javadoc-plugin</artifactId>
238
				<configuration>
239
					<links>
240
						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
241
						<link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
242
						<link>http://www.hibernate.org/hib_docs/v3/api/</link>						
243
						<!-- more libraries? -->
244
					</links>
245
				</configuration>
246
			</plugin>
247
			<plugin>
248
				<!-- this will generate an indexed and cross-referenced HTML version of your source code -->
249
				<groupId>org.apache.maven.plugins</groupId>
250
				<artifactId>maven-jxr-plugin</artifactId>
251
			</plugin>
252
			<plugin>
253
				<!-- 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 -->
254
				<groupId>org.codehaus.mojo</groupId>
255
				<artifactId>taglist-maven-plugin</artifactId>
256
			</plugin>
257
			<plugin>
258
				<!-- 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 -->
259
				<groupId>org.codehaus.mojo</groupId>
260
				<artifactId>cobertura-maven-plugin</artifactId>
261
				<!--
262
					<executions>
263
					<execution>
264
					<id>clean</id>
265
					<phase>clean</phase>
266
					<goals>
267
					<goal>clean</goal>
268
					</goals>
269
					</execution>
270
					</executions>
271
				-->
272
			</plugin>
273
			<!--			
274
			<plugin>
275
				<groupId>org.apache.maven.plugins</groupId>
276
				<artifactId>maven-project-info-reports-plugin</artifactId>
277
				<reportSets>
278
					<reportSet>
279
						<reports>
280
							<report>dependencies</report>
281
							<report>project-team</report>
282
							<report>mailing-list</report>
283
							<report>cim</report>
284
							<report>issue-tracking</report>
285
							<report>license</report>
286
							<report>scm</report>
287
						</reports>
288
					</reportSet>
289
				</reportSets>
290
			</plugin>	-->		
291
			<!-- The changes-maven-plugin plug-in uses a special XML file (src/changes/changes.xml) to track releases and changes in each release -->
292
			<!-- 
293
			<plugin>
294
				<groupId>org.codehaus.mojo</groupId>
295
				<artifactId>changes-maven-plugin</artifactId>
296
			</plugin>
297
			<plugin>
298
				<artifactId>maven-surefire-plugin</artifactId>
299
			</plugin>
300
			-->
301
			<!-- The changelog plug-in generates a nice report describing which files have been changed and by whom -->
302
			<!-- 
303
			<plugin>
304
				<groupId>org.codehaus.mojo</groupId>
305
				<artifactId>changelog-maven-plugin</artifactId>
306
			</plugin>
307
			-->
308
		</plugins>
309
	</reporting>
310
	
311
	
312
	<!--	 DISTRIBUTION MANAGEMENT -->
313
	<distributionManagement>
314
		<site>
315
			<id>edit-wp5</id>
316
       		<url>
317
				scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/cdmlib/site
318
			</url>
319
       	</site>
320
		<repository>
321
			<id>edit-wp5</id>
322
			<name>Edit Maven Repository</name>
323
			<url>
324
					scp://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/cdmlib/mavenrepo
325
			</url>
326
		</repository>
327
	</distributionManagement>
328

    
329

    
330
	<!-- **** DEPENDENCIES **** -->
331
	<dependencies>
332
		<dependency>
333
			<groupId>junit</groupId>
334
			<artifactId>junit</artifactId>
335
			<version>4.4</version>
336
			<scope>test</scope>
337
		</dependency>
338
		<dependency>
339
			<groupId>log4j</groupId>
340
			<artifactId>log4j</artifactId>
341
			<!--			<version>1.2.15</version>-->
342
		</dependency>
343
	</dependencies>
344
	<dependencyManagement>
345
		<dependencies>
346
			<dependency>
347
				<groupId>log4j</groupId>
348
				<artifactId>log4j</artifactId>
349
				<version>1.2.15</version>
350
			</dependency>
351
			<dependency>
352
				<groupId>xml-apis</groupId>
353
				<artifactId>xml-apis</artifactId>
354
				<version>2.0.2</version>
355
			</dependency>
356
		</dependencies>
357
	</dependencyManagement>
358

    
359
</project>
(2-2/3)