Project

General

Profile

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

    
226
	<reporting>
227
		<plugins>
228
			<plugin>
229
				<!-- you will want to start by publishing your classes' Javadocs -->
230
				<groupId>org.apache.maven.plugins</groupId>
231
				<artifactId>maven-javadoc-plugin</artifactId>
232
				<configuration>
233
					<links>
234
						<link>http://java.sun.com/j2se/1.6.0/docs/api/</link>
235
						<link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
236
						<link>http://www.hibernate.org/hib_docs/v3/api/</link>
237
						<!-- more libraries? -->
238
					</links>
239
				</configuration>
240
			</plugin>
241
			<plugin>
242
				<!--
243
					this will generate an indexed and cross-referenced HTML version of
244
					your source code
245
				-->
246
				<groupId>org.apache.maven.plugins</groupId>
247
				<artifactId>maven-jxr-plugin</artifactId>
248
			</plugin>
249
			<plugin>
250
				<!--
251
					if you use @todo tags to remind you of things to be done (which is
252
					a good coding practice), the taglist report will generate a list of
253
					all the items marked @todo or TODO
254
				-->
255
				<groupId>org.codehaus.mojo</groupId>
256
				<artifactId>taglist-maven-plugin</artifactId>
257
			</plugin>
258
			<plugin>
259
				<!--
260
					Test coverage can be a useful indication of the quality of your
261
					unit tests. It basically tells you how much of your code is
262
					actually run by your unit tests, which, in turn, can give you a
263
					good idea of the tests' quality
264
				-->
265
				<groupId>org.codehaus.mojo</groupId>
266
				<artifactId>cobertura-maven-plugin</artifactId>
267
			</plugin>
268

    
269

    
270
		</plugins>
271
	</reporting>
272
	<!--	 DISTRIBUTION MANAGEMENT -->
273
	<distributionManagement>
274
		<site>
275
			<id>wp5.e-taxonomy.eu</id>
276
			<url>
277
				scpexe://160.45.63.151/var/www/wp5.e-taxonomy.eu/portal/
278
			</url>
279
		</site>
280
	</distributionManagement>
281

    
282
</project>
(10-10/11)