This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
137 lines (127 loc) · 4.54 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is subject to the terms and conditions defined in file LICENSE,
* which is part of this source code package.
*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
-->
<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.phenotips</groupId>
<artifactId>phenotips-parent</artifactId>
<version>1.3.6</version>
<relativePath />
</parent>
<groupId>com.gene42.clients.niaid.phenotips</groupId>
<artifactId>gene42-niaid-phenotips</artifactId>
<version>1.4.3</version>
<packaging>pom</packaging>
<name>Gene42 - NIAID - PhenoTips</name>
<properties>
<phenotips.groupId>org.phenotips</phenotips.groupId>
<components.groupId>com.gene42.clients.niaid.phenotips.components</components.groupId>
<entities.version>1.3.6-niaid</entities.version>
<commons.version>1.0.8-2</commons.version>
</properties>
<!-- We need to list repositories for finding the parent. Other settings will be correctly inherited from the parent. -->
<repositories>
<repository>
<id>phenotips-releases</id>
<name>PhenoTips Releases repository</name>
<url>https://nexus.phenotips.org/nexus/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
<repository>
<id>phenotips-snapshots</id>
<name>PhenoTips Snapshots repository</name>
<url>https://nexus.phenotips.org/nexus/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
<repository>
<id>gene42-nexus</id>
<name>Gene42 PhenoTips Public Repository Group</name>
<url>https://nexus.gene42.com/repository/gene42-public-group/</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<site />
<repository>
<id>nexus.gene42.com</id>
<name>Maven2 Remote Repository for Releases</name>
<url>https://nexus.gene42.com/repository/gene42-public-releases/</url>
</repository>
<snapshotRepository>
<id>nexus.gene42.com</id>
<name>Maven2 Development Repository for Snapshots</name>
<url>https://nexus.gene42.com/repository/gene42-public-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header combine.self="override">commercial-license.txt</header>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagNameFormat combine.self="override">phenotips-niaid-@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:git://github.com/Gene42/phenotips-niaid.git</connection>
<developerConnection>scm:git:git@github.com:Gene42/phenotips-niaid.git</developerConnection>
<url>https://github.com/Gene42/phenotips-niaid.git/tree/master/</url>
<tag>phenotips-niaid-1.4.3</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${phenotips.groupId}</groupId>
<artifactId>phenotips-entities-api</artifactId>
<version>${entities.version}</version>
</dependency>
<dependency>
<groupId>${phenotips.groupId}</groupId>
<artifactId>phenotips-entities-ui</artifactId>
<version>${entities.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>components</module>
<module>distribution</module>
</modules>
</project>