Project

General

Profile

Download (8.38 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"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4
	http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

    
6

    
7
	<!--
8
		xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
9
		http://maven.apache.org/maven-v4_0_0.xsd"
10
	-->
11

    
12
	<modelVersion>4.0.0</modelVersion>
13
	<groupId>eu.etaxonomy</groupId>
14
	<artifactId>portal</artifactId>
15
	<version>3.0.5</version>
16
	<packaging>jar</packaging>
17
	<name>CDM Dataportal</name>
18

    
19
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22

    
23
	<scm>
24
		<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/drupal/</connection>
25
		<developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/drupal/</developerConnection>
26
		<url>http://dev.e-taxonomy.eu/trac/browser/trunk/drupal/</url>
27
	</scm>
28

    
29
	<mailingLists>
30
		<mailingList>
31
			<name>dev-edit</name>
32
			<subscribe>
33
				https://webmail.mnhn.fr/wws/subrequest/dev-edit
34
			</subscribe>
35
			<unsubscribe>
36
				https://webmail.mnhn.fr/wws/sigrequest/dev-edit
37
			</unsubscribe>
38
			<post>dev-edit@mnhn.fr</post>
39
			<archive>https://webmail.mnhn.fr/wws/arc/dev-edit/</archive>
40
		</mailingList>
41
		<mailingList>
42
			<name>cdm-edit</name>
43
			<post>cdm-edit@mnhn.fr</post>
44
			<subscribe>
45
				https://webmail.mnhn.fr/wws/subrequest/cdm-edit
46
			</subscribe>
47
			<unsubscribe>
48
				https://webmail.mnhn.fr/wws/sigrequest/cdm-edit
49
			</unsubscribe>
50
			<archive>https://webmail.mnhn.fr/wws/arc/cdm-edit/</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>a.kohlbecker</id>
64
			<name>
65
				Andreas Kohlbecker
66
			</name>
67
			<email>a.kohlbecker [at] bgbm.org</email>
68
			<organization>
69
				Botanical Garden Botanical Museum Berlin
70
			</organization>
71
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
72
			<timezone>+1</timezone>
73
			<roles>
74
				<role>Developer</role>
75
			</roles>
76
			<url></url>
77
		</developer>
78
		<developer>
79
<!-- your SVN account id please! -->
80
			<id>f.revilla</id>
81
			<name>
82
				Francisco Revilla
83
			</name>
84
			<email>f.revilla [at] bgbm.org</email>
85
			<organization>
86
				Botanical Garden Botanical Museum Berlin
87
			</organization>
88
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
89
			<timezone>+1</timezone>
90
			<roles>
91
				<role>Developer</role>
92
			</roles>
93
			<url></url>
94
		</developer>
95
	</developers>
96

    
97
	<!--contributors>
98
		<contributor>
99
			<name>Test-Contributor</name>
100
		</contributor>
101
	</contributors-->
102
	<issueManagement>
103
		<system>Trac</system>
104
		<url>http://dev.e-taxonomy.eu/trac/</url>
105
	</issueManagement>
106
	<!-- **** REPOSITORIES **** -->
107
	<repositories>
108
		<repository>
109
			<id>EditRepository</id>
110
			<url>http://wp5.e-taxonomy.eu/cdmlib/mavenrepo/</url>
111
		</repository>
112
	</repositories>
113
	<!-- **** PLUGINS **** -->
114
	<build>
115
		<plugins>
116
			<plugin>
117
				<groupId>org.codehaus.mojo</groupId>
118
				<artifactId>buildnumber-maven-plugin</artifactId>
119
				<version>1.0-beta-3</version>
120
				<executions>
121
					<execution>
122
						<!--<phase>deploy</phase>-->
123
						<goals>
124
							<goal>create</goal>
125
						</goals>
126
					</execution>
127
				</executions>
128
				<configuration>
129
					<doCheck>false</doCheck>
130
					<!--
131
						Only create the build number if there are no local modifications
132
					-->
133
					<doUpdate>false</doUpdate>
134
					<!--
135
						automatically update the local svn copy
136
					-->
137
				</configuration>
138
			</plugin>
139
			<plugin>
140
				<groupId>org.apache.maven.plugins</groupId>
141
				<artifactId>maven-site-plugin</artifactId>
142
				<version>2.1.1</version>
143
				<configuration>
144
					<locales>en</locales>
145
					<siteDirectory>${basedir}/site</siteDirectory>
146
				</configuration>
147
			</plugin>
148
			<plugin>
149
				<groupId>org.apache.maven.plugins</groupId>
150
				<artifactId>maven-source-plugin</artifactId>
151
				<executions>
152
					<execution>
153
						<id>attach-sources</id>
154
						<phase>verify</phase>
155
						<goals>
156
							<goal>jar</goal>
157
						</goals>
158
					</execution>
159
				</executions>
160
			</plugin>
161
			<plugin>
162
				<groupId>org.apache.maven.plugins</groupId>
163
				<artifactId>maven-javadoc-plugin</artifactId>
164
				<configuration>
165
					<aggregate>true</aggregate>
166
					<stylesheet>maven</stylesheet>
167
				</configuration>
168
			</plugin>
169
			<plugin>
170
				<groupId>org.apache.maven.plugins</groupId>
171
				<artifactId>maven-eclipse-plugin</artifactId>
172
				<configuration>
173
					<downloadSources>true</downloadSources>
174
					<downloadJavadocs>true</downloadJavadocs>
175
				</configuration>
176
			</plugin>
177
			<!-- DEPLOY -->
178
			<plugin>
179
				<artifactId>maven-antrun-plugin</artifactId>
180
				<version>1.3</version>
181
				<executions>
182
					<execution>
183
						<phase>install</phase>
184
						<configuration>
185
							<tasks>
186
								<!--
187
									${project.patchversion} is explicitly set in this pom
188
								-->
189
								<property name="project.fullversionstring"
190
								    value="${project.fullversionstring}" />
191
								<ant antfile="${project.basedir}/src/main/installer/linux/build-deb.xml"
192
									dir="${project.basedir}" />
193
							</tasks>
194
						</configuration>
195
						<goals>
196
							<goal>run</goal>
197
						</goals>
198
					</execution>
199
				</executions>
200
			</plugin>
201
		</plugins>
202
		<!-- EXTENSIONS -->
203
		<extensions>
204
			<extension>
205
				<groupId>org.apache.maven.wagon</groupId>
206
				<artifactId>wagon-scm</artifactId>
207
				<version>1.0-beta-6</version>
208
			</extension>
209
			<extension>
210
				<groupId>org.apache.maven.wagon</groupId>
211
				<artifactId>wagon-ssh</artifactId>
212
				<version>1.0-beta-6</version>
213
			</extension>
214
			<extension>
215
				<groupId>org.apache.maven.wagon</groupId>
216
				<artifactId>wagon-ssh-external</artifactId>
217
				<version>1.0-beta-6</version>
218
			</extension>
219
			<extension>
220
				<groupId>org.apache.maven.scm</groupId>
221
				<artifactId>maven-scm-manager-plexus</artifactId>
222
				<version>1.0</version>
223
			</extension>
224
			<extension>
225
				<groupId>org.apache.maven.scm</groupId>
226
				<artifactId>maven-scm-provider-svnexe</artifactId>
227
				<version>1.0</version>
228
			</extension>
229
			<!-- WebDAV plugin to upload snapshots -->
230
			<extension>
231
				<groupId>org.apache.maven.wagon</groupId>
232
				<artifactId>wagon-webdav</artifactId>
233
				<version>1.0-beta-2</version>
234
			</extension>
235
		</extensions>
236
	</build>
237

    
238
	<reporting>
239
		<plugins>
240
			<plugin>
241
				<!-- you will want to start by publishing your classes' Javadocs -->
242
				<groupId>org.apache.maven.plugins</groupId>
243
				<artifactId>maven-javadoc-plugin</artifactId>
244
				<configuration>
245
					<links>
246
						<link>http://java.sun.com/j2se/1.6.0/docs/api/</link>
247
						<link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
248
						<link>http://www.hibernate.org/hib_docs/v3/api/</link>
249
						<!-- more libraries? -->
250
					</links>
251
				</configuration>
252
			</plugin>
253
			<plugin>
254
				<!--
255
					this will generate an indexed and cross-referenced HTML version of
256
					your source code
257
				-->
258
				<groupId>org.apache.maven.plugins</groupId>
259
				<artifactId>maven-jxr-plugin</artifactId>
260
			</plugin>
261
			<plugin>
262
				<!--
263
					if you use @todo tags to remind you of things to be done (which is
264
					a good coding practice), the taglist report will generate a list of
265
					all the items marked @todo or TODO
266
				-->
267
				<groupId>org.codehaus.mojo</groupId>
268
				<artifactId>taglist-maven-plugin</artifactId>
269
			</plugin>
270
			<plugin>
271
				<!--
272
					Test coverage can be a useful indication of the quality of your
273
					unit tests. It basically tells you how much of your code is
274
					actually run by your unit tests, which, in turn, can give you a
275
					good idea of the tests' quality
276
				-->
277
				<groupId>org.codehaus.mojo</groupId>
278
				<artifactId>cobertura-maven-plugin</artifactId>
279
			</plugin>
280
			<plugin>
281
				<groupId>org.apache.maven.plugins</groupId>
282
				<artifactId>maven-changes-plugin</artifactId>
283
				<version>2.3</version>
284
				<configuration>
285
					<issueLinkTemplatePerSystem>
286
						<default>%URL%/ticket/%ISSUE%</default>
287
					</issueLinkTemplatePerSystem>
288
				</configuration>
289
				<reportSets>
290
					<reportSet>
291
						<reports>
292
							<report>changes-report</report>
293
						</reports>
294
					</reportSet>
295
				</reportSets>
296
			</plugin>
297
		</plugins>
298
	</reporting>
299
	<!--	 DISTRIBUTION MANAGEMENT -->
300
	<distributionManagement>
301
		<site>
302
			<id>wp5.e-taxonomy.eu</id>
303
			<url>
304
				scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/portal/
305
			</url>
306
		</site>
307
	</distributionManagement>
308

    
309
</project>
(12-12/13)