Project

General

Profile

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