Project

General

Profile

Download (11.4 KB) Statistics
| Branch: | Tag: | Revision:
1 7226d02b Andreas Kohlbecker
<?xml version="1.0" encoding="UTF-8"?>
2 6333aec9 jenkins
<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 7226d02b Andreas Kohlbecker
    <modelVersion>4.0.0</modelVersion>
4
    <groupId>eu.etaxonomy</groupId>
5 9c6eb818 Andreas Kohlbecker
    <artifactId>cdm-dataportal</artifactId>
6 7fa1eea8 Andreas Kohlbecker
    <name>CDM Dataportal</name>
7 9c6eb818 Andreas Kohlbecker
    <!-- 
8
        packaging needs to be jar otherwise running surefire tests is not possible? 
9
        see also  maven-jar-plugin & maven-deploy-plugin where artifact are skipped
10
    -->
11 0ed08d92 Andreas Kohlbecker
    <packaging>jar</packaging>
12 735ffe43 jenkins
    <version>5.3.0-SNAPSHOT</version>
13 7226d02b Andreas Kohlbecker
14 0ed08d92 Andreas Kohlbecker
    <properties>
15
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 8f8aae13 Andreas Kohlbecker
        <!-- 
17
			for the latest version see http://docs.seleniumhq.org/download/#client-drivers 
18
		-->
19 5b83c25f Andreas Kohlbecker
        <selenium.version>2.53.0</selenium.version>
20 b9d3af66 Andreas Kohlbecker
        <!-- 
21
            from WebDriver 2.53.0 HTMLUnit is no longer distributed with Selenium WebDriver
22
            https://github.com/SeleniumHQ/htmlunit-driver
23
            need to bring in the htmlunit driver on its own
24
            https://github.com/SeleniumHQ/selenium/blob/master/java/CHANGELOG 
25 0207cf2c Andreas Kohlbecker
            
26
            The version 2.52.0 of html unit is at least compatible with firefox 45.0.2 which 
27
            can be downloaded from https://ftp.mozilla.org/pub/firefox/releases/45.0.2/
28
            
29
            In order to use this version for example in /home/andreas/opt/firefox-45.0.2
30
            and configure the ~/.cdmLibrary/DataPortalTest.xml like
31
            <entry key="webdriver.firefox.bin">/home/andreas/opt/firefox-45.0.2/firefox</entry>
32
            <entry key="browser">firefox</entry>
33
            
34 b9d3af66 Andreas Kohlbecker
        -->
35
        <selenium.htmlunit.version>2.52.0</selenium.htmlunit.version>
36 0ed08d92 Andreas Kohlbecker
    </properties>
37 52fe46cc Patrick Plitzner
    <scm>
38
      <connection>scm:git:https://dev.e-taxonomy.eu/git/cdm-dataportal.git</connection>
39
      <developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdm-dataportal.git
40
        </developerConnection>
41
      <url>https://dev.e-taxonomy.eu/gitweb/cdm-dataportal.git/tree</url>
42
    </scm>
43 6abb0164 Andreas Kohlbecker
    <mailingLists>
44
        <mailingList>
45
            <name>EDIT Platform Developers</name>
46
            <subscribe>
47
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#subscribe
48
            </subscribe>
49
            <unsubscribe>
50
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#options
51
            </unsubscribe>
52
        </mailingList>
53
        <mailingList>
54
            <name>EDIT User</name>
55
            <subscribe>
56
                https://lists.fu-berlin.de/listinfo/edituser#subscribe
57
            </subscribe>
58
            <unsubscribe>
59
                https://lists.fu-berlin.de/listinfo/edituser#options
60
            </unsubscribe>
61
        </mailingList>
62
    </mailingLists>
63
    <licenses>
64
        <license>
65
            <name>Mozilla Public License Version 1.1</name>
66
            <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
67
            <distribution>repo</distribution>
68
        </license>
69
    </licenses>
70
    <developers>
71
        <developer>
72
            <!-- your SVN account id please! -->
73
            <id>a.kohlbecker</id>
74
            <name>
75
                Andreas Kohlbecker
76
            </name>
77
            <email>a.kohlbecker [at] bgbm.org</email>
78
            <organization>
79
                Botanical Garden Botanical Museum Berlin
80
            </organization>
81
            <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
82
            <timezone>+1</timezone>
83
            <roles>
84
                <role>Developer</role>
85
            </roles>
86
            <url />
87
        </developer>
88
    </developers>
89
90 8f5f8f6c Andreas Kohlbecker
    <distributionManagement>
91
        <site>
92
            <id>wp5.e-taxonomy.eu</id>
93
            <url>
94
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/portal/
95
            </url>
96
        </site>
97
        <repository>
98
            <uniqueVersion>false</uniqueVersion>
99
            <id>wp5.e-taxonomy.eu</id>
100
            <name>Edit Maven Repository</name>
101
            <url>
102
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo
103
            </url>
104
        </repository>
105
    </distributionManagement>
106
107 5b83c25f Andreas Kohlbecker
    <repositories>
108
        <!-- The EDIT repository is needed for the maven site skin -->
109
        <repository>
110
            <id>EditRepository</id>
111
            <url>http://wp5.e-taxonomy.eu/mavenrepo/</url>
112
        </repository>
113
    </repositories>
114
115 59d195ef Andreas Kohlbecker
  <profiles>
116
    <profile>
117
      <id>java8-doclint-disabled</id>
118
      <activation>
119
        <jdk>[1.8,)</jdk>
120
      </activation>
121
      <properties>
122
        <javadoc.opts>-Xdoclint:none</javadoc.opts>
123
      </properties>
124
    </profile>
125
  </profiles>
126 7226d02b Andreas Kohlbecker
    <build>
127
        <plugins>
128 0ed08d92 Andreas Kohlbecker
            <plugin>
129
                <artifactId>maven-compiler-plugin</artifactId>
130
                <version>3.2</version>
131
                <configuration>
132 0fcd5deb Andreas Kohlbecker
                    <source>1.8</source>
133
                    <target>1.8</target>
134 0ed08d92 Andreas Kohlbecker
                </configuration>
135
            </plugin>
136 59d195ef Andreas Kohlbecker
            <plugin>
137
              <groupId>org.apache.maven.plugins</groupId>
138
              <artifactId>maven-javadoc-plugin</artifactId>
139
              <version>2.9.1</version>
140
              <configuration>
141
                <additionalparam>${javadoc.opts}</additionalparam>
142
              </configuration>
143
            </plugin>            
144 9c6eb818 Andreas Kohlbecker
            <plugin>
145
              <groupId>org.apache.maven.plugins</groupId>
146
              <artifactId>maven-jar-plugin</artifactId>
147
              <version>2.6</version>
148
              <configuration>
149
                <excludes>
150
                  <exclude>**</exclude><!-- create empty archives -->
151
                </excludes>
152
                <skipIfEmpty>true</skipIfEmpty>
153
              </configuration>
154
            </plugin>
155 7226d02b Andreas Kohlbecker
            <plugin>
156
                <groupId>org.apache.maven.plugins</groupId>
157
                <artifactId>maven-deploy-plugin</artifactId>
158 9c6eb818 Andreas Kohlbecker
                <configuration>
159
                    <skip>true</skip><!-- packaging is set to jar  -->
160
                </configuration>
161 7226d02b Andreas Kohlbecker
                <version>2.8.2</version>
162
            </plugin>
163 6abb0164 Andreas Kohlbecker
            <plugin>
164
                <groupId>org.apache.maven.plugins</groupId>
165
                <artifactId>maven-site-plugin</artifactId>
166
                <version>3.4</version>
167
                <configuration>
168
                    <locales>en</locales>
169
                    <outputEncoding>UTF-8</outputEncoding>
170
                    <siteDirectory>${basedir}/site</siteDirectory>
171 e8d43aef Andreas Kohlbecker
                    <!-- 
172
						chmod: not not use chmod, rather adapt the umask
173 6abb0164 Andreas Kohlbecker
                        of the user at the server to which the site is deployed
174
                    -->
175
                    <chmod>false</chmod>
176
                </configuration>
177
            </plugin>
178 7226d02b Andreas Kohlbecker
            <plugin>
179
                <groupId>external.atlassian.jgitflow</groupId>
180
                <artifactId>jgitflow-maven-plugin</artifactId>
181
                <version>1.0-m6</version>
182
                <configuration>
183
                    <pushHotfixes>true</pushHotfixes>
184
                    <pushReleases>true</pushReleases>
185
                    <enableSshAgent>true</enableSshAgent>
186
                    <allowSnapshots>true</allowSnapshots>
187
                    <allowUntracked>true</allowUntracked>
188
                </configuration>
189
                <dependencies>
190
                    <!--
191
                          upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53
192
                          in order have ssl key exchange algorithms compatible with openssh 6.7
193
                       -->
194
                    <dependency>
195
                        <groupId>com.jcraft</groupId>
196
                        <artifactId>jsch</artifactId>
197
                        <version>0.1.53</version>
198
                    </dependency>
199
                </dependencies>
200
            </plugin>
201
        </plugins>
202 8f5f8f6c Andreas Kohlbecker
        <!-- 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 7226d02b Andreas Kohlbecker
    </build>
237
238 0ed08d92 Andreas Kohlbecker
    <dependencies>
239
        <dependency>
240
            <groupId>junit</groupId>
241
            <artifactId>junit</artifactId>
242
            <version>4.6</version>
243
        </dependency>
244
        <dependency>
245
            <groupId>log4j</groupId>
246
            <artifactId>log4j</artifactId>
247
            <version>1.2.16</version>
248
        </dependency>
249
        <dependency>
250
            <groupId>commons-lang</groupId>
251
            <artifactId>commons-lang</artifactId>
252
            <version>2.2</version>
253
        </dependency>
254
        <!--
255
          selenium 2 webdriver, see
256
          http://seleniumhq.org/docs/03_webdriver.html#with-maven
257
        -->
258
        <dependency>
259
            <groupId>org.seleniumhq.selenium</groupId>
260
            <artifactId>selenium-firefox-driver</artifactId>
261 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
262 0ed08d92 Andreas Kohlbecker
        </dependency>
263
        <dependency>
264
            <groupId>org.seleniumhq.selenium</groupId>
265
            <artifactId>selenium-support</artifactId>
266 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
267 0ed08d92 Andreas Kohlbecker
        </dependency>
268
        <dependency>
269
            <groupId>org.seleniumhq.selenium</groupId>
270
            <artifactId>selenium-api</artifactId>
271 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
272 0ed08d92 Andreas Kohlbecker
        </dependency>
273
        <dependency>
274
            <!-- Selenese emulation -->
275
            <groupId>org.seleniumhq.selenium</groupId>
276
            <artifactId>selenium-java</artifactId>
277 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
278 0ed08d92 Andreas Kohlbecker
        </dependency>
279
        <dependency>
280
            <groupId>org.seleniumhq.selenium</groupId>
281
            <artifactId>selenium-chrome-driver</artifactId>
282 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
283 0ed08d92 Andreas Kohlbecker
        </dependency>
284
        <dependency>
285
            <groupId>org.seleniumhq.selenium</groupId>
286
            <artifactId>selenium-ie-driver</artifactId>
287 b9d3af66 Andreas Kohlbecker
            <version>${selenium.version}</version>
288 0ed08d92 Andreas Kohlbecker
        </dependency>
289
        <dependency>
290
            <groupId>org.seleniumhq.selenium</groupId>
291
            <artifactId>selenium-htmlunit-driver</artifactId>
292 b9d3af66 Andreas Kohlbecker
            <version>${selenium.htmlunit.version}</version>
293 0ed08d92 Andreas Kohlbecker
        </dependency>
294 0fcd5deb Andreas Kohlbecker
        <dependency>
295
            <groupId>eu.etaxonomy</groupId>
296
            <artifactId>cdmlib-model</artifactId>
297
            <version>${project.version}</version>
298
        </dependency>
299 0ed08d92 Andreas Kohlbecker
    </dependencies>
300 1cb7e8b3 Andreas Kohlbecker
</project>