-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
151 lines (144 loc) · 6.46 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<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>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa</artifactId>
<version>5.2-Alpha-3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Protempa</name>
<url>https://github.com/eurekaclinical/protempa.git</url>
<inceptionYear>2012</inceptionYear>
<description>Protempa supports the construction of software systems for
querying clinical databases, summarizing patient data, detecting clinically
significant data patterns in groups of patients or individual patients, and
extract, transform and load (ETL). Its special feature, temporal abstraction,
supports queries and summarization of data in terms of temporal patterns.
Temporal patterns enable robust querying and extraction of clinical history.
These patterns include frequencies (at least two, three, etc. of some event or
observation); sequences (chemotherapy followed by surgery within 180 days,
a hospital encounter followed by another hospital encounter within 30 days);
and overlaps (falling platelet counts in the setting of HELLP syndrome).
</description>
<parent>
<groupId>org.eurekaclinical</groupId>
<artifactId>eurekaclinical-parent-standard-deps</artifactId>
<version>4-Alpha-4</version>
</parent>
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<scm>
<connection>scm:git:https://github.com/eurekaclinical/protempa.git</connection>
<developerConnection>scm:git:https://github.com/eurekaclinical/protempa.git</developerConnection>
<url>https://github.com/eurekaclinical/protempa.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/eurekaclinical/protempa/issues</url>
</issueManagement>
<modules>
<module>protempa-framework</module>
<module>protempa-bcp-serviceloader</module>
<module>protempa-bp-serviceloader</module>
<module>protempa-ksb-protege</module>
<module>protempa-dsb-relationaldb</module>
<module>protempa-dsb-file</module>
<module>protempa-test-suite</module>
<module>protempa-bconfigs-ini4j-ini</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bconfigs-ini4j-ini</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bcp-serviceloader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-bp-serviceloader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-dsb-relationaldb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-framework</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-framework</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-ksb-protege</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>protempa-test-suite</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>javautil</artifactId>
<version>4.5</version>
</dependency>
<dependency>
<groupId>org.eurekaclinical</groupId>
<artifactId>datastore</artifactId>
<version>3.4-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseName>apache_v2</licenseName>
<roots>
<root>src/main</root>
<root>src/test/java/</root>
</roots>
<extraExtensions>
<!-- .xsd files are not supported by default -->
<!-- but should be commented in XML style -->
<xsd>xml</xsd>
</extraExtensions>
</configuration>
</plugin>
<plugin>
<groupId>org.jasig.maven</groupId>
<artifactId>maven-notice-plugin</artifactId>
<configuration>
<noticeTemplate>etc/NOTICE.template</noticeTemplate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
</project>