Project

General

Profile

Download (8.47 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>3.9.0</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.45.0</selenium-version>
17
    </properties>
18

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

    
66
    <distributionManagement>
67
        <site>
68
            <id>wp5.e-taxonomy.eu</id>
69
            <url>
70
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/portal/
71
            </url>
72
        </site>
73
        <repository>
74
            <uniqueVersion>false</uniqueVersion>
75
            <id>wp5.e-taxonomy.eu</id>
76
            <name>Edit Maven Repository</name>
77
            <url>
78
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo
79
            </url>
80
        </repository>
81
    </distributionManagement>
82

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

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

    
230
</project>
(3-3/3)