-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
109 lines (103 loc) · 4.19 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-package</artifactId>
<version>3.0-Alpha-8-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Protempa Package</name>
<description>This package creates a binary distribution of Protempa.
</description>
<parent>
<groupId>org.eurekaclinical</groupId>
<artifactId>eurekaclinical-parent</artifactId>
<version>1-Alpha-13</version>
</parent>
<url>https://github.com/eurekaclinical/protempa-package.git</url>
<properties>
<protempa-version>3.0-Alpha-10</protempa-version>
</properties>
<scm>
<connection>scm:git:https://github.com/eurekaclinical/protempa-package.git</connection>
<developerConnection>scm:git:https://github.com/eurekaclinical/protempa-package.git</developerConnection>
<url>https://github.com/eurekaclinical/protempa-package.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/eurekaclinical/protempa-package/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>manual</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-framework</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bconfigs-ini4j-ini</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bcp-serviceloader</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bp-serviceloader</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-ksb-protege</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-tsb-umls</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-test-suite</artifactId>
<version>${protempa-version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-dsb-relationaldb</artifactId>
<version>${protempa-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>protempa-${protempa-version}</finalName>
<descriptors>
<descriptor>assembly/bin.xml</descriptor>
<descriptor>assembly/src.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.jasig.maven</groupId>
<artifactId>maven-notice-plugin</artifactId>
<configuration>
<noticeTemplate>etc/NOTICE.template</noticeTemplate>
<licenseMapping>
<param>etc/license-mappings.xml</param>
</licenseMapping>
</configuration>
</plugin>
</plugins>
</build>
</project>