Project

General

Profile

« Previous | Next » 

Revision b5a14dab

Added by Andreas Kohlbecker over 8 years ago

disabling old pom.xml used for site

View differences:

modules/cdm_dataportal/pom.xml
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.5.1</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
  <prerequisites>
30
    <maven>3.0.5</maven>
31
  </prerequisites>
32

  
33
	<mailingLists>
34
		<mailingList>
35
			<name>dev-edit</name>
36
			<subscribe>
37
				https://webmail.mnhn.fr/wws/subrequest/dev-edit
38
			</subscribe>
39
			<unsubscribe>
40
				https://webmail.mnhn.fr/wws/sigrequest/dev-edit
41
			</unsubscribe>
42
			<post>dev-edit@mnhn.fr</post>
43
			<archive>https://webmail.mnhn.fr/wws/arc/dev-edit/</archive>
44
		</mailingList>
45
		<mailingList>
46
			<name>cdm-edit</name>
47
			<post>cdm-edit@mnhn.fr</post>
48
			<subscribe>
49
				https://webmail.mnhn.fr/wws/subrequest/cdm-edit
50
			</subscribe>
51
			<unsubscribe>
52
				https://webmail.mnhn.fr/wws/sigrequest/cdm-edit
53
			</unsubscribe>
54
			<archive>https://webmail.mnhn.fr/wws/arc/cdm-edit/</archive>
55
		</mailingList>
56
	</mailingLists>
57
	<licenses>
58
		<license>
59
			<name>Mozilla Public License Version 1.1</name>
60
			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
61
			<distribution>repo</distribution>
62
		</license>
63
	</licenses>
64
	<developers>
65
		<developer>
66
			<!-- your SVN account id please! -->
67
			<id>a.kohlbecker</id>
68
			<name>
69
				Andreas Kohlbecker
70
			</name>
71
			<email>a.kohlbecker [at] bgbm.org</email>
72
			<organization>
73
				Botanical Garden Botanical Museum Berlin
74
			</organization>
75
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
76
			<timezone>+1</timezone>
77
			<roles>
78
				<role>Developer</role>
79
			</roles>
80
			<url></url>
81
		</developer>
82
		<developer>
83
<!-- your SVN account id please! -->
84
			<id>f.revilla</id>
85
			<name>
86
				Francisco Revilla
87
			</name>
88
			<email>f.revilla [at] bgbm.org</email>
89
			<organization>
90
				Botanical Garden Botanical Museum Berlin
91
			</organization>
92
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
93
			<timezone>+1</timezone>
94
			<roles>
95
				<role>Developer</role>
96
			</roles>
97
			<url></url>
98
		</developer>
99
	</developers>
100

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

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

  
323
</project>
modules/cdm_dataportal/pom.xml.offline
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.5.1</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
  <prerequisites>
30
    <maven>3.0.5</maven>
31
  </prerequisites>
32

  
33
	<mailingLists>
34
		<mailingList>
35
			<name>dev-edit</name>
36
			<subscribe>
37
				https://webmail.mnhn.fr/wws/subrequest/dev-edit
38
			</subscribe>
39
			<unsubscribe>
40
				https://webmail.mnhn.fr/wws/sigrequest/dev-edit
41
			</unsubscribe>
42
			<post>dev-edit@mnhn.fr</post>
43
			<archive>https://webmail.mnhn.fr/wws/arc/dev-edit/</archive>
44
		</mailingList>
45
		<mailingList>
46
			<name>cdm-edit</name>
47
			<post>cdm-edit@mnhn.fr</post>
48
			<subscribe>
49
				https://webmail.mnhn.fr/wws/subrequest/cdm-edit
50
			</subscribe>
51
			<unsubscribe>
52
				https://webmail.mnhn.fr/wws/sigrequest/cdm-edit
53
			</unsubscribe>
54
			<archive>https://webmail.mnhn.fr/wws/arc/cdm-edit/</archive>
55
		</mailingList>
56
	</mailingLists>
57
	<licenses>
58
		<license>
59
			<name>Mozilla Public License Version 1.1</name>
60
			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
61
			<distribution>repo</distribution>
62
		</license>
63
	</licenses>
64
	<developers>
65
		<developer>
66
			<!-- your SVN account id please! -->
67
			<id>a.kohlbecker</id>
68
			<name>
69
				Andreas Kohlbecker
70
			</name>
71
			<email>a.kohlbecker [at] bgbm.org</email>
72
			<organization>
73
				Botanical Garden Botanical Museum Berlin
74
			</organization>
75
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
76
			<timezone>+1</timezone>
77
			<roles>
78
				<role>Developer</role>
79
			</roles>
80
			<url></url>
81
		</developer>
82
		<developer>
83
<!-- your SVN account id please! -->
84
			<id>f.revilla</id>
85
			<name>
86
				Francisco Revilla
87
			</name>
88
			<email>f.revilla [at] bgbm.org</email>
89
			<organization>
90
				Botanical Garden Botanical Museum Berlin
91
			</organization>
92
			<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
93
			<timezone>+1</timezone>
94
			<roles>
95
				<role>Developer</role>
96
			</roles>
97
			<url></url>
98
		</developer>
99
	</developers>
100

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

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

  
323
</project>

Also available in: Unified diff