forked from nhsconnect/careconnect-reference-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
166 lines (144 loc) · 5.83 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.nhs.careconnect.ri</groupId>
<artifactId>ccri</artifactId>
<version>3.5.4</version>
<packaging>pom</packaging>
<properties>
<care-connect-version>3.5.4</care-connect-version>
<hapi-fhir-version>3.3.0</hapi-fhir-version>
<cucumber-version>1.2.5</cucumber-version>
<derby_version>10.13.1.1</derby_version>
<slf4j>1.7.25</slf4j>
<spring-boot>1.5.7.RELEASE</spring-boot>
<spring-version>5.0.3.RELEASE</spring-version>
<spring_security_version>1.0.8.RELEASE</spring_security_version>
<thymeleaf-version>3.0.7.RELEASE</thymeleaf-version>
<junit-version>4.12</junit-version>
<hamcrest-version>2.0.0.0</hamcrest-version>
<mockito-version>1.10.19</mockito-version>
<camel-version>2.21.1</camel-version>
<phloc_commons_version>4.4.11</phloc_commons_version>
<!-- Disable Dependency Location Checking for Site Report -->
<dependency.locations.enabled>false</dependency.locations.enabled>
</properties>
<dependencies>
<dependency>
<groupId>uk.org.hl7.fhir</groupId>
<artifactId>cc-core</artifactId>
<version>${care-connect-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-server</artifactId>
<version>${hapi-fhir-version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>${hapi-fhir-version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
<version>${hapi-fhir-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-commons</artifactId>
<version>${phloc_commons_version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- Use FailSafe plugin to run Integration Tests
This will be executed by running the 'verify' target.
The pre & post integration tests targets can then be used to setup & teardown the Integration Test
environment.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.20.1</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.20.1</version>
<inherited>true</inherited>
<configuration>
<alwaysGenerateSurefireReport>false</alwaysGenerateSurefireReport>
<showSuccess>false</showSuccess>
<aggregate>true</aggregate>
<!--also set this to link to generated source reports-->
<linkXRef>true</linkXRef>
</configuration>
</plugin>
</plugins>
</reporting>
<modules>
<module>cc-core</module>
<module>cc-cli</module>
<module>ccri-database</module>
<module>ccri-dao-stu3</module>
<module>ccri-fhirserver-common</module>
<module>ccri-fhirgateway-common</module>
<module>ccri-fhirgateway</module>
<module>ccri-fhirgatewayhttps</module>
<module>ccri-fhirserver</module>
</modules>
<distributionManagement>
<repository>
<id>bintray-kevinmayfield-careconnect</id>
<name>kevinmayfield-careconnect</name>
<url>https://api.bintray.com/maven/kevinmayfield/careconnect/CareConnectPkg/;publish=1</url>
</repository>
</distributionManagement>
</project>