Project

General

Profile

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