Project

General

Profile

Download (5.61 KB) Statistics
| Branch: | Tag: | Revision:
1 7226d02b Andreas Kohlbecker
<?xml version="1.0" encoding="UTF-8"?>
2
<project>
3
    <modelVersion>4.0.0</modelVersion>
4
    <groupId>eu.etaxonomy</groupId>
5
    <artifactId>cdm_dataportal</artifactId>
6
    <packaging>pom</packaging>
7 9f03d709 Andreas Kohlbecker
    <version>3.9.0</version>
8 7226d02b Andreas Kohlbecker
9 6abb0164 Andreas Kohlbecker
    <mailingLists>
10
        <mailingList>
11
            <name>EDIT Platform Developers</name>
12
            <subscribe>
13
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#subscribe
14
            </subscribe>
15
            <unsubscribe>
16
                https://lists.fu-berlin.de/listinfo/editplatformdevelopers#options
17
            </unsubscribe>
18
        </mailingList>
19
        <mailingList>
20
            <name>EDIT User</name>
21
            <subscribe>
22
                https://lists.fu-berlin.de/listinfo/edituser#subscribe
23
            </subscribe>
24
            <unsubscribe>
25
                https://lists.fu-berlin.de/listinfo/edituser#options
26
            </unsubscribe>
27
        </mailingList>
28
    </mailingLists>
29
    <licenses>
30
        <license>
31
            <name>Mozilla Public License Version 1.1</name>
32
            <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
33
            <distribution>repo</distribution>
34
        </license>
35
    </licenses>
36
    <developers>
37
        <developer>
38
            <!-- your SVN account id please! -->
39
            <id>a.kohlbecker</id>
40
            <name>
41
                Andreas Kohlbecker
42
            </name>
43
            <email>a.kohlbecker [at] bgbm.org</email>
44
            <organization>
45
                Botanical Garden Botanical Museum Berlin
46
            </organization>
47
            <organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
48
            <timezone>+1</timezone>
49
            <roles>
50
                <role>Developer</role>
51
            </roles>
52
            <url />
53
        </developer>
54
    </developers>
55
56 8f5f8f6c Andreas Kohlbecker
    <distributionManagement>
57
        <site>
58
            <id>wp5.e-taxonomy.eu</id>
59
            <url>
60
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/portal/
61
            </url>
62
        </site>
63
        <repository>
64
            <uniqueVersion>false</uniqueVersion>
65
            <id>wp5.e-taxonomy.eu</id>
66
            <name>Edit Maven Repository</name>
67
            <url>
68
                scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo
69
            </url>
70
        </repository>
71
    </distributionManagement>
72
73 7226d02b Andreas Kohlbecker
    <build>
74
        <plugins>
75
            <plugin>
76
                <groupId>org.apache.maven.plugins</groupId>
77
                <artifactId>maven-deploy-plugin</artifactId>
78
                <version>2.8.2</version>
79
            </plugin>
80 6abb0164 Andreas Kohlbecker
            <plugin>
81
                <groupId>org.apache.maven.plugins</groupId>
82
                <artifactId>maven-site-plugin</artifactId>
83
                <version>3.4</version>
84
                <configuration>
85
                    <locales>en</locales>
86
                    <outputEncoding>UTF-8</outputEncoding>
87
                    <siteDirectory>${basedir}/site</siteDirectory>
88
                    <!-- chmod: not not use chmod, rather adapt the umask
89
                        of the user at the server to which the site is deployed
90
                    -->
91
                    <chmod>false</chmod>
92
                </configuration>
93
            </plugin>
94 7226d02b Andreas Kohlbecker
            <plugin>
95
                <groupId>external.atlassian.jgitflow</groupId>
96
                <artifactId>jgitflow-maven-plugin</artifactId>
97
                <version>1.0-m6</version>
98
                <configuration>
99
                    <pushHotfixes>true</pushHotfixes>
100
                    <pushReleases>true</pushReleases>
101
                    <enableSshAgent>true</enableSshAgent>
102
                    <allowSnapshots>true</allowSnapshots>
103
                    <allowUntracked>true</allowUntracked>
104
                </configuration>
105
                <dependencies>
106
                    <!--
107
                          upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53
108
                          in order have ssl key exchange algorithms compatible with openssh 6.7
109
                       -->
110
                    <dependency>
111
                        <groupId>com.jcraft</groupId>
112
                        <artifactId>jsch</artifactId>
113
                        <version>0.1.53</version>
114
                    </dependency>
115
                </dependencies>
116
            </plugin>
117
        </plugins>
118 8f5f8f6c Andreas Kohlbecker
        <!-- EXTENSIONS -->
119
        <extensions>
120
            <extension>
121
                <groupId>org.apache.maven.wagon</groupId>
122
                <artifactId>wagon-scm</artifactId>
123
                <version>1.0-beta-6</version>
124
            </extension>
125
            <extension>
126
                <groupId>org.apache.maven.wagon</groupId>
127
                <artifactId>wagon-ssh</artifactId>
128
                <version>1.0-beta-6</version>
129
            </extension>
130
            <extension>
131
                <groupId>org.apache.maven.wagon</groupId>
132
                <artifactId>wagon-ssh-external</artifactId>
133
                <version>1.0-beta-6</version>
134
            </extension>
135
            <extension>
136
                <groupId>org.apache.maven.scm</groupId>
137
                <artifactId>maven-scm-manager-plexus</artifactId>
138
                <version>1.0</version>
139
            </extension>
140
            <extension>
141
                <groupId>org.apache.maven.scm</groupId>
142
                <artifactId>maven-scm-provider-svnexe</artifactId>
143
                <version>1.0</version>
144
            </extension>
145
            <!-- WebDAV plugin to upload snapshots -->
146
            <extension>
147
                <groupId>org.apache.maven.wagon</groupId>
148
                <artifactId>wagon-webdav</artifactId>
149
                <version>1.0-beta-2</version>
150
            </extension>
151
        </extensions>
152 7226d02b Andreas Kohlbecker
    </build>
153
154
</project>