-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
168 lines (138 loc) · 4.66 KB
/
pom.xml
File metadata and controls
168 lines (138 loc) · 4.66 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!-- =========================================== -->
<!-- Project information -->
<!-- =========================================== -->
<modelVersion>4.0.0</modelVersion>
<groupId>edu.utah.further</groupId>
<artifactId>further-open-build</artifactId>
<version>1.4.4-SNAPSHOT</version>
<packaging>pom</packaging>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<!-- =========================================== -->
<!-- Externalized properties -->
<!-- =========================================== -->
<!-- =========================================== -->
<!-- Global dependencies -->
<!-- =========================================== -->
<!-- =========================================== -->
<!-- Custom profiles - see also settings.xml -->
<!-- Note: profiles in this section are not -->
<!-- available to child modules - Maven feature; -->
<!-- although the m2eclipse one does seem to be. -->
<!-- Declare global profiles in settings.xml. -->
<!-- =========================================== -->
<profiles>
<!-- ############################ -->
<!-- OS Specific Profiles -->
<!-- ############################ -->
<profile>
<id>windows_profile</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<keystore.location>${java.home}/jre/lib/security/cacerts</keystore.location>
</properties>
</profile>
<profile>
<id>unix_profile</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<properties>
<keystore.location>${java.home}/lib/security/cacerts</keystore.location>
</properties>
</profile>
</profiles>
<!-- =========================================== -->
<!-- Modules -->
<!-- =========================================== -->
<modules>
<module>further-open-core</module>
<module>further-open-osgi</module>
<module>further-open-datasources</module>
<module>further-open-xquery</module>
<module>i2b2-hook</module>
</modules>
<!-- =========================================== -->
<!-- Our mailing lists -->
<!-- =========================================== -->
<mailingLists>
<mailingList>
<name>Project Email Distribution List</name>
<post>bmi-further@lists.utah.edu</post>
<subscribe>further@utah.edu</subscribe>
<unsubscribe>further@utah.edu</unsubscribe>
<archive>http://www.lists.utah.edu</archive>
</mailingList>
<mailingList>
<name>FURTHeR Users List</name>
<post>bmi-further@lists.utah.edu</post>
<subscribe>further@utah.edu</subscribe>
<unsubscribe>further@utah.edu</unsubscribe>
<archive>http://www.lists.utah.edu</archive>
</mailingList>
<mailingList>
<name>Core Development Team</name>
<post>bmi-further-dev@lists.utah.edu</post>
<subscribe>further@utah.edu</subscribe>
<unsubscribe>further@utah.edu</unsubscribe>
<archive>http://www.lists.utah.edu</archive>
</mailingList>
<mailingList>
<name>Software Development Team</name>
<post>further-software-dev@lists.utah.edu</post>
<subscribe>further@utah.edu</subscribe>
<unsubscribe>further@utah.edu</unsubscribe>
<archive>http://www.lists.utah.edu</archive>
</mailingList>
</mailingLists>
<!-- =========================================== -->
<!-- Software licensing information -->
<!-- =========================================== -->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- =========================================== -->
<!-- Version control information -->
<!-- =========================================== -->
<!-- =========================================== -->
<!-- Organization -->
<!-- =========================================== -->
<organization>
<name>Office of the AVP for Health Sci. IT</name>
<url>http://healthsciences.utah.edu/avpit/</url>
</organization>
<!-- =========================================== -->
<!-- Developers -->
<!-- =========================================== -->
<developers>
<developer>
<id>dustin.schultz</id>
<name>N. Dustin Schultz</name>
<email>dustin.schultz@utah.edu</email>
<roles>
<role>Software Engineer</role>
</roles>
</developer>
<developer>
<id>shan.he</id>
<name>Shan He</name>
<email>shan.he@utah.edu</email>
<roles>
<role>Ph.D. Student, Biomedical Informatics</role>
</roles>
</developer>
</developers>
</project>