Project

General

Profile

Download (11.9 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<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">
3
	<modelVersion>4.0.0</modelVersion>
4
	<prerequisites>
5
		<maven>3.0</maven>
6
	</prerequisites>
7
	<groupId>eu.etaxonomy</groupId>
8
	<artifactId>taxeditor-parent</artifactId>
9
	<version>3.0.6-SNAPSHOT</version>
10
	<name>EDIT Taxonomic Editor</name>
11
	<description>The Taxonomic Editor for EDIT's platform for cybertaxonomy</description>
12
	<url>http://wp5.e-taxonomy.eu</url>
13
	<inceptionYear>2007</inceptionYear>
14
	<packaging>pom</packaging>
15
	<properties>
16
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17
		<cdmlib.version>3.0.7-SNAPSHOT</cdmlib.version>
18
		<tycho.version>0.12.0</tycho.version>
19
		<taxeditor.version>3.0.6-SNAPSHOT</taxeditor.version>
20
	</properties>
21
	<modules>
22
		<module>eu.etaxonomy.taxeditor.cdmlib</module>
23
		<module>eu.etaxonomy.taxeditor.store</module>
24
		<module>eu.etaxonomy.taxeditor.navigation</module>
25
		<module>eu.etaxonomy.taxeditor.editor</module>
26
		<module>eu.etaxonomy.taxeditor.bulkeditor</module>
27
		<module>eu.etaxonomy.taxeditor.printpublisher</module>
28
		<!--module>eu.etaxonomy.taxeditor.annotatedlineeditor</module-->
29
		<module>eu.etaxonomy.taxeditor.help</module>
30
		<module>eu.etaxonomy.taxeditor.application</module>
31
		<module>eu.etaxonomy.taxeditor.feature.platform</module>
32
		<module>eu.etaxonomy.taxeditor.feature</module>
33
		<module>eu.etaxonomy.taxeditor</module>
34
	</modules>
35
	<scm>
36
		<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/taxeditor/</connection>
37
		<developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/taxeditor/</developerConnection>
38
		<url>http://dev.e-taxonomy.eu/websvn/listing.php?repname=EDIT+Taxonomic+Editor</url>
39
	</scm>
40
	<mailingLists>
41
		<mailingList>
42
			<name>EDIT Taxonomic Editor</name>
43
			<subscribe>
44
				edit-taxonomic-editor+subscribe@googlegroups.com
45
			</subscribe>
46
			<unsubscribe>
47
				edit-taxonomic-editor+unsubscribe@googlegroups.com
48
			</unsubscribe>
49
			<post>edit-taxonomic-editor@googlegroups.com</post>
50
			<archive>http://groups.google.com/group/edit-taxonomic-editor/topics</archive>
51
		</mailingList>
52
	</mailingLists>
53
	<licenses>
54
		<license>
55
			<name>Mozilla Public License Version 1.1</name>
56
			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
57
			<distribution>repo</distribution>
58
		</license>
59
	</licenses>
60
	<developers>
61
		<developer>
62
			<!-- your SVN account id please! -->
63
			<id>n.hoffmann</id>
64
			<name>
65
				Niels Hoffmann
66
			</name>
67
			<email>n.hoffmann [at] bgbm.org</email>
68
			<organization>
69
				Botanic Garden Botanical Museum Berlin
70
			</organization>
71
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
72
			<timezone>+1</timezone>
73
			<roles>
74
				<role>Java Developer</role>
75
				<role>Architect</role>
76
			</roles>
77
			<url/>
78
		</developer>
79
	</developers>
80
	<issueManagement>
81
		<system>Trac</system>
82
		<url>http://dev.e-taxonomy.eu/trac/</url>
83
	</issueManagement>
84
	<ciManagement>
85
		<system>Jenkins</system>
86
		<url>http://160.45.63.201/jenkins</url>
87
	</ciManagement>
88
	<!-- **** REPOSITORIES **** -->
89
	<repositories>
90
		<!-- the cdm internal repository -->
91
		<repository>
92
			<id>EditRepository</id>
93
			<url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
94
		</repository>
95
	</repositories>
96
	<build>
97
		<plugins>
98
			<plugin>
99
				<groupId>org.eclipse.tycho</groupId>
100
				<artifactId>tycho-maven-plugin</artifactId>
101
				<version>${tycho.version}</version>
102
				<extensions>true</extensions>
103
			</plugin>
104
			<plugin>
105
				<groupId>org.eclipse.tycho</groupId>
106
				<artifactId>tycho-packaging-plugin</artifactId>
107
				<version>${tycho.version}</version>
108
				<configuration>
109
					<strictVersions>true</strictVersions>
110
				</configuration>
111
			</plugin>
112
			<plugin>
113
				<groupId>org.eclipse.tycho</groupId>
114
				<artifactId>target-platform-configuration</artifactId>
115
				<version>${tycho.version}</version>
116
				<configuration>
117
					<resolver>p2</resolver>
118
					<target>
119
						<artifact>
120
							<groupId>eu.etaxonomy</groupId>
121
							<artifactId>eu.etaxonomy.taxeditor</artifactId>
122
							<version>${taxeditor.version}</version>
123
							<classifier>rcp</classifier>
124
						</artifact>
125
					</target>
126
					<ignoreTychoRepositories>true</ignoreTychoRepositories>
127
					<environments>
128
						<!--environment>
129
							<os>macosx</os>
130
							<ws>cocoa</ws>
131
							<arch>x86_64</arch>
132
						</environment-->
133
						<environment>
134
							<os>win32</os>
135
							<ws>win32</ws>
136
							<arch>x86</arch>
137
						</environment>
138
						<environment>
139
							<os>linux</os>
140
							<ws>gtk</ws>
141
							<arch>x86</arch>
142
						</environment>
143
						<environment>
144
							<os>linux</os>
145
							<ws>gtk</ws>
146
							<arch>x86_64</arch>
147
						</environment>
148
					</environments>
149
				</configuration>
150
			</plugin>
151
			<plugin>
152
				<groupId>org.apache.maven.plugins</groupId>
153
				<artifactId>maven-compiler-plugin</artifactId>
154
				<version>2.3.2</version>
155
				<configuration>
156
					<source>1.6</source>
157
					<target>1.6</target>
158
				</configuration>
159
			</plugin>
160
			<plugin>
161
				<groupId>org.apache.maven.plugins</groupId>
162
				<artifactId>maven-surefire-plugin</artifactId>
163
				<version>2.6</version>
164
				<configuration>
165
					<includes>
166
						<include>**/*Test.java</include>
167
					</includes>
168
					<systemPropertyVariables>
169
						<property>
170
							<name>hibernate.connection.driver_class</name>
171
							<value>${hibernate.connection.driver_class}</value>
172
						</property>
173
						<property>
174
							<name>hibernate.connection.url</name>
175
							<value>${hibernate.connection.url}</value>
176
						</property>
177
						<property>
178
							<name>hibernate.connection.username</name>
179
							<value>${hibernate.connection.username}</value>
180
						</property>
181
						<property>
182
							<name>hibernate.connection.password</name>
183
							<value>${hibernate.connection.password}</value>
184
						</property>
185
					</systemPropertyVariables>
186
				</configuration>
187
			</plugin>
188
			<plugin>
189
				<groupId>org.apache.maven.plugins</groupId>
190
				<artifactId>maven-site-plugin</artifactId>
191
				<version>2.2</version>
192
				<configuration>
193
					<locales>en</locales>
194
				</configuration>
195
			</plugin>
196
			<plugin>
197
				<groupId>org.apache.maven.plugins</groupId>
198
				<artifactId>maven-source-plugin</artifactId>
199
				<version>2.1.2</version>
200
				<executions>
201
					<execution>
202
						<id>attach-sources</id>
203
						<phase>verify</phase>
204
						<goals>
205
							<goal>jar</goal>
206
						</goals>
207
					</execution>
208
				</executions>
209
			</plugin>
210
			<plugin>
211
				<groupId>org.apache.maven.plugins</groupId>
212
				<artifactId>maven-javadoc-plugin</artifactId>
213
				<version>2.7</version>
214
				<configuration>
215
					<stylesheet>maven</stylesheet>
216
					<quiet>true</quiet>
217
					<detectLinks>true</detectLinks>
218
					<failOnError>false</failOnError>
219
				</configuration>
220
				<executions>
221
					<execution>
222
						<id>aggregate</id>
223
						<goals>
224
							<goal>aggregate</goal>
225
						</goals>
226
						<phase>site</phase>
227
					</execution>
228
				</executions>
229
			</plugin>
230
			<plugin>
231
				<groupId>org.apache.maven.plugins</groupId>
232
				<artifactId>maven-eclipse-plugin</artifactId>
233
				<version>2.8</version>
234
				<configuration>
235
					<downloadSources>true</downloadSources>
236
					<downloadJavadocs>true</downloadJavadocs>
237
					<additionalProjectnatures>
238
						<projectnature>org.eclipse.pde.PluginNature</projectnature>
239
					</additionalProjectnatures>
240
				</configuration>
241
			</plugin>
242
			<!-- ====== DEPLOY ====== -->
243
			<plugin>
244
				<groupId>org.apache.maven.plugins</groupId>
245
				<artifactId>maven-release-plugin</artifactId>
246
				<version>2.2.1</version>
247
				<configuration>
248
					<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
249
					<autoVersionSubmodules>false</autoVersionSubmodules>
250
					<!--preparationGoals>clean verify install</preparationGoals-->
251
					<!--goals>deploy</goals-->
252
					<!-- skipping site-deploy by explicitly configuring the goal here -->
253
					<tagBase>http://dev.e-taxonomy.eu/svn/tags/taxeditor</tagBase>
254
				</configuration>
255
			</plugin>
256
			<plugin>
257
				<groupId>org.codehaus.mojo</groupId>
258
				<artifactId>wagon-maven-plugin</artifactId>
259
				<!--
260
			      	Problems with the wagon-maven-plugin have been encounterd on Windows,
261
					it should work properly on linux though.
262
				 -->
263
				<executions>
264
					<execution>
265
						<phase>deploy</phase>
266
						<goals>
267
							<goal>upload</goal>
268
						</goals>
269
					</execution>
270
				</executions>
271
				<configuration>
272
					<fromDir>eu.etaxonomy.taxeditor/target/products</fromDir>
273
					<includes>*.zip</includes>
274
					<url>scpexe://wp5.e-taxonomy.eu/var/www/download/taxeditor/${project.version}</url>
275
					<serverId>wp5.e-taxonomy.eu</serverId>
276
				</configuration>
277
			</plugin>
278
		</plugins>
279
		<pluginManagement>
280
			<plugins>
281
				<plugin>
282
					<groupId>org.apache.maven.plugins</groupId>
283
					<artifactId>maven-jar-plugin</artifactId>
284
					<version>2.3.1</version>
285
				</plugin>
286
				<plugin>
287
					<groupId>org.codehaus.mojo</groupId>
288
					<artifactId>wagon-maven-plugin</artifactId>
289
					<version>1.0-beta-3</version>
290
				</plugin>
291
				<!--plugin>
292
					<groupId>org.eclipse.tycho</groupId>
293
					<artifactId>tycho-packaging-plugin</artifactId>
294
					<version>${tycho.version}</version-->
295
				<!--executions>
296
						<execution>
297
							<id>timestamp</id>
298
							<phase>validate</phase>
299
							<goals>
300
								<goal>timestamp</goal>
301
							</goals>
302
						</execution>
303
					</executions-->
304
				<!-- for some reason configuration won't work here, have to define
305
	        			in each module -->
306
				<!--configuration>
307
						<archive>
308
							<addMavenDescriptor>false</addMavenDescriptor>
309
						</archive>
310
						<environments>
311
							<environment>
312
								<os>macosx</os>
313
								<ws>cocoa</ws>
314
								<arch>x86</arch>
315
							</environment>
316
						</environments>
317
					</configuration>
318
				</plugin-->
319
			</plugins>
320
		</pluginManagement>
321
		<extensions>
322
			<extension>
323
				<groupId>org.apache.maven.wagon</groupId>
324
				<artifactId>wagon-scm</artifactId>
325
				<version>1.0-alpha-5</version>
326
			</extension>
327
			<extension>
328
				<groupId>org.apache.maven.wagon</groupId>
329
				<artifactId>wagon-ssh</artifactId>
330
				<version>1.0-beta-7</version>
331
			</extension>
332
			<extension>
333
				<groupId>org.apache.maven.scm</groupId>
334
				<artifactId>maven-scm-manager-plexus</artifactId>
335
				<version>1.0</version>
336
			</extension>
337
			<extension>
338
				<groupId>org.apache.maven.scm</groupId>
339
				<artifactId>maven-scm-provider-svnexe</artifactId>
340
				<version>1.0</version>
341
			</extension>
342
			<!-- WebDAV plugin to upload snapshots -->
343
			<extension>
344
				<groupId>org.apache.maven.wagon</groupId>
345
				<artifactId>wagon-webdav</artifactId>
346
				<version>1.0-beta-2</version>
347
			</extension>
348
		</extensions>
349
	</build>
350
	<reporting>
351
		<plugins>
352
			<plugin>
353
				<!-- you will want to start by publishing your classes' Javadocs -->
354
				<groupId>org.apache.maven.plugins</groupId>
355
				<artifactId>maven-javadoc-plugin</artifactId>
356
				<version>2.7</version>
357
				<configuration>
358
					<detectLinks>true</detectLinks>
359
				</configuration>
360
			</plugin>
361
			<plugin>
362
				<!-- this will generate an indexed and cross-referenced HTML version of your source code -->
363
				<groupId>org.apache.maven.plugins</groupId>
364
				<artifactId>maven-jxr-plugin</artifactId>
365
				<version>2.2</version>
366
			</plugin>
367
			<plugin>
368
				<groupId>org.apache.maven.plugins</groupId>
369
				<artifactId>maven-changes-plugin</artifactId>
370
				<version>2.3</version>
371
				<configuration>
372
					<issueLinkTemplatePerSystem>
373
						<default>%URL%/ticket/%ISSUE%</default>
374
					</issueLinkTemplatePerSystem>
375
				</configuration>
376
				<reportSets>
377
					<reportSet>
378
						<reports>
379
							<report>changes-report</report>
380
						</reports>
381
					</reportSet>
382
				</reportSets>
383
			</plugin>
384
		</plugins>
385
	</reporting>
386
	<!--	 DISTRIBUTION MANAGEMENT -->
387
	<distributionManagement>
388
		<site>
389
			<id>wp5.e-taxonomy.eu</id>
390
			<name>EDIT Taxonomic Editor</name>
391
			<url>scpexe://160.45.63.151/var/www/wp5.e-taxonomy.eu/taxeditor/</url>
392
		</site>
393
		<repository>
394
			<uniqueVersion>false</uniqueVersion>
395
			<id>wp5.e-taxonomy.eu</id>
396
			<name>Edit Maven Repository</name>
397
			<url>scpexe://160.45.63.151/var/www/wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
398
		</repository>
399
	</distributionManagement>
400
</project>
(5-5/5)