-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
106 lines (90 loc) · 3.34 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2016 The Ontario Institute for Cancer Research. All rights reserved.
This program and the accompanying materials are made available under the terms of the GNU Public License v3.0.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--><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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.icgc.dcc</groupId>
<artifactId>dcc-parent</artifactId>
<version>37</version>
</parent>
<artifactId>dcc-common</artifactId>
<version>5.1.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>${project.name}</description>
<url>https://github.com/icgc-dcc/dcc</url>
<organization>
<name>ICGC DCC</name>
<url>http://dcc.icgc.org</url>
</organization>
<inceptionYear>2012</inceptionYear>
<modules>
<module>dcc-common-core</module>
<module>dcc-common-meta</module>
<module>dcc-common-client</module>
<module>dcc-common-hadoop</module>
<module>dcc-common-cascading</module>
<module>dcc-common-ega</module>
<module>dcc-common-gdc</module>
<module>dcc-common-tcga</module>
<module>dcc-common-test</module>
<module>dcc-common-es</module>
</modules>
<scm>
<connection>${github.url}</connection>
<developerConnection>${github.url}</developerConnection>
<url>${github.url}</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>jira</system>
<url>https://jira.oicr.on.ca/browse/DCC</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>http://dcc-jenkins1.oicr.on.ca:8080/</url>
</ciManagement>
<licenses>
<license>
<name>GNU Public License v3.0</name>
<url>http://www.gnu.org/licenses</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>OICR</name>
<organization>OICR</organization>
</developer>
</developers>
<repositories>
<repository>
<id>dcc-releases</id>
<url>https://artifacts.oicr.on.ca/artifactory/dcc-release</url>
</repository>
</repositories>
<build>
<plugins>
<!-- Include source -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
<properties>
<source.plugin.version>2.3</source.plugin.version>
</properties>
</project>