Project

General

Profile

Download (8.86 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project
3
        xmlns="http://maven.apache.org/POM/4.0.0"
4
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6
    <modelVersion>4.0.0</modelVersion>
7
    <groupId>eu.etaxonomy</groupId>
8
    <artifactId>cdm_dataportal</artifactId>
9
    <name>CDM Dataportal</name>
10
    <packaging>jar</packaging>
11
    <version>4.0.0-SNAPSHOT</version>
12

    
13
    <properties>
14
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
        <!-- for the latest version see http://docs.seleniumhq.org/download/#client-drivers -->
16
        <selenium.version>2.53.0</selenium.version>
17
        <!-- 
18
            from WebDriver 2.53.0 HTMLUnit is no longer distributed with Selenium WebDriver
19
            https://github.com/SeleniumHQ/htmlunit-driver
20
            need to bring in the htmlunit driver on its own
21
            https://github.com/SeleniumHQ/selenium/blob/master/java/CHANGELOG 
22
        -->
23
        <selenium.htmlunit.version>2.52.0</selenium.htmlunit.version>
24
    </properties>
25

    
26
    <mailingLists>
27
        <mailingList>
28
            <name>EDIT Platform Developers</name>
29
            <subscribe>
30
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#subscribe
31
            </subscribe>
32
            <unsubscribe>
33
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#options
34
            </unsubscribe>
35
        </mailingList>
36
        <mailingList>
37
            <name>EDIT User</name>
38
            <subscribe>
39
                https://lists.fu-berlin.de/listinfo/edituser#subscribe
40
            </subscribe>
41
            <unsubscribe>
42
                https://lists.fu-berlin.de/listinfo/edituser#options
43
            </unsubscribe>
44
        </mailingList>
45
    </mailingLists>
46
    <licenses>
47
        <license>
48
            <name>Mozilla Public License Version 1.1</name>
49
            <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
50
            <distribution>repo</distribution>
51
        </license>
52
    </licenses>
53
    <developers>
54
        <developer>
55
            <!-- your SVN account id please! -->
56
            <id>a.kohlbecker</id>
57
            <name>
58
                Andreas Kohlbecker
59
            </name>
60
            <email>a.kohlbecker [at] bgbm.org</email>
61
            <organization>
62
                Botanical Garden Botanical Museum Berlin
63
            </organization>
64
            <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
65
            <timezone>+1</timezone>
66
            <roles>
67
                <role>Developer</role>
68
            </roles>
69
            <url />
70
        </developer>
71
    </developers>
72

    
73
    <distributionManagement>
74
        <site>
75
            <id>wp5.e-taxonomy.eu</id>
76
            <url>
77
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/portal/
78
            </url>
79
        </site>
80
        <repository>
81
            <uniqueVersion>false</uniqueVersion>
82
            <id>wp5.e-taxonomy.eu</id>
83
            <name>Edit Maven Repository</name>
84
            <url>
85
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo
86
            </url>
87
        </repository>
88
    </distributionManagement>
89

    
90
    <build>
91
        <plugins>
92
            <plugin>
93
                <artifactId>maven-compiler-plugin</artifactId>
94
                <version>3.2</version>
95
                <configuration>
96
                    <source>1.7</source>
97
                    <target>1.7</target>
98
                </configuration>
99
            </plugin>
100
            <plugin>
101
                <groupId>org.apache.maven.plugins</groupId>
102
                <artifactId>maven-deploy-plugin</artifactId>
103
                <version>2.8.2</version>
104
            </plugin>
105
            <plugin>
106
                <groupId>org.apache.maven.plugins</groupId>
107
                <artifactId>maven-site-plugin</artifactId>
108
                <version>3.4</version>
109
                <configuration>
110
                    <locales>en</locales>
111
                    <outputEncoding>UTF-8</outputEncoding>
112
                    <siteDirectory>${basedir}/site</siteDirectory>
113
                    <!-- chmod: not not use chmod, rather adapt the umask
114
                        of the user at the server to which the site is deployed
115
                    -->
116
                    <chmod>false</chmod>
117
                </configuration>
118
            </plugin>
119
            <plugin>
120
                <groupId>external.atlassian.jgitflow</groupId>
121
                <artifactId>jgitflow-maven-plugin</artifactId>
122
                <version>1.0-m6</version>
123
                <configuration>
124
                    <pushHotfixes>true</pushHotfixes>
125
                    <pushReleases>true</pushReleases>
126
                    <enableSshAgent>true</enableSshAgent>
127
                    <allowSnapshots>true</allowSnapshots>
128
                    <allowUntracked>true</allowUntracked>
129
                </configuration>
130
                <dependencies>
131
                    <!--
132
                          upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53
133
                          in order have ssl key exchange algorithms compatible with openssh 6.7
134
                       -->
135
                    <dependency>
136
                        <groupId>com.jcraft</groupId>
137
                        <artifactId>jsch</artifactId>
138
                        <version>0.1.53</version>
139
                    </dependency>
140
                </dependencies>
141
            </plugin>
142
        </plugins>
143
        <!-- EXTENSIONS -->
144
        <extensions>
145
            <extension>
146
                <groupId>org.apache.maven.wagon</groupId>
147
                <artifactId>wagon-scm</artifactId>
148
                <version>1.0-beta-6</version>
149
            </extension>
150
            <extension>
151
                <groupId>org.apache.maven.wagon</groupId>
152
                <artifactId>wagon-ssh</artifactId>
153
                <version>1.0-beta-6</version>
154
            </extension>
155
            <extension>
156
                <groupId>org.apache.maven.wagon</groupId>
157
                <artifactId>wagon-ssh-external</artifactId>
158
                <version>1.0-beta-6</version>
159
            </extension>
160
            <extension>
161
                <groupId>org.apache.maven.scm</groupId>
162
                <artifactId>maven-scm-manager-plexus</artifactId>
163
                <version>1.0</version>
164
            </extension>
165
            <extension>
166
                <groupId>org.apache.maven.scm</groupId>
167
                <artifactId>maven-scm-provider-svnexe</artifactId>
168
                <version>1.0</version>
169
            </extension>
170
            <!-- WebDAV plugin to upload snapshots -->
171
            <extension>
172
                <groupId>org.apache.maven.wagon</groupId>
173
                <artifactId>wagon-webdav</artifactId>
174
                <version>1.0-beta-2</version>
175
            </extension>
176
        </extensions>
177
    </build>
178

    
179
    <dependencies>
180
        <dependency>
181
            <groupId>junit</groupId>
182
            <artifactId>junit</artifactId>
183
            <version>4.6</version>
184
        </dependency>
185
        <dependency>
186
            <groupId>log4j</groupId>
187
            <artifactId>log4j</artifactId>
188
            <version>1.2.16</version>
189
        </dependency>
190
        <dependency>
191
            <groupId>commons-lang</groupId>
192
            <artifactId>commons-lang</artifactId>
193
            <version>2.2</version>
194
        </dependency>
195
        <!--
196
          selenium 2 webdriver, see
197
          http://seleniumhq.org/docs/03_webdriver.html#with-maven
198
        -->
199
        <dependency>
200
            <groupId>org.seleniumhq.selenium</groupId>
201
            <artifactId>selenium-firefox-driver</artifactId>
202
            <version>${selenium.version}</version>
203
        </dependency>
204
        <dependency>
205
            <groupId>org.seleniumhq.selenium</groupId>
206
            <artifactId>selenium-support</artifactId>
207
            <version>${selenium.version}</version>
208
        </dependency>
209
        <dependency>
210
            <groupId>org.seleniumhq.selenium</groupId>
211
            <artifactId>selenium-api</artifactId>
212
            <version>${selenium.version}</version>
213
        </dependency>
214
        <dependency>
215
            <!-- Selenese emulation -->
216
            <groupId>org.seleniumhq.selenium</groupId>
217
            <artifactId>selenium-java</artifactId>
218
            <version>${selenium.version}</version>
219
        </dependency>
220
        <dependency>
221
            <groupId>org.seleniumhq.selenium</groupId>
222
            <artifactId>selenium-chrome-driver</artifactId>
223
            <version>${selenium.version}</version>
224
        </dependency>
225
        <dependency>
226
            <groupId>org.seleniumhq.selenium</groupId>
227
            <artifactId>selenium-ie-driver</artifactId>
228
            <version>${selenium.version}</version>
229
        </dependency>
230
        <dependency>
231
            <groupId>org.seleniumhq.selenium</groupId>
232
            <artifactId>selenium-htmlunit-driver</artifactId>
233
            <version>${selenium.htmlunit.version}</version>
234
        </dependency>
235
    </dependencies>
236
</project>
(3-3/3)