This repository has been archived by the owner on Sep 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
pom.xml
432 lines (403 loc) · 18.8 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<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">
<groupId>org.connectopensource</groupId>
<artifactId>CONNECTSolution</artifactId>
<version>5.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<name>CONNECT Solution</name>
<url>www.connectopensource.org</url>
<description>CONNECT is an open source software solution that supports health information exchange – both locally and at the national level. CONNECT uses Nationwide Health Information Network standards and governance to make sure that health information exchanges are compatible with other exchanges being set up throughout the country.
This software solution was initially developed by federal agencies to support their health-related missions, but it is now available to all organizations and can be used to help set up health information exchanges and share data using nationally-recognized interoperability standards.
CONNECT can be used to:
Set up a health information exchange within an organization
Tie a health information exchange into a regional network of health information exchanges using Nationwide Health Information Network standards
By advancing the adoption of interoperable health IT systems and health information exchanges, the country will better be able to achieve the goal of making sure all citizens have electronic health records by 2014. Health data will be able to follow a patient across the street or across the country.</description>
<properties>
<git.username>CONNECT-Solution</git.username>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<connect.common.properties>Dev</connect.common.properties>
<!-- JDK Versions -->
<compiler.source>1.7</compiler.source>
<compiler.target>1.7</compiler.target>
<!-- CONNECT Dependency Versions -->
<connect.webservices.version>5.4.0-SNAPSHOT</connect.webservices.version>
<connect.commontypes.version>5.4.0-SNAPSHOT</connect.commontypes.version>
<cxf.version>3.1.9</cxf.version>
<spring.version>4.1.9.RELEASE</spring.version>
<slf4j.version>1.7.13</slf4j.version>
<openam.version>10.0.1</openam.version>
<opensaml.xmltool.version>1.4.6</opensaml.xmltool.version>
<!--<opensaml.version>2.6.6</opensaml.version>-->
<hibernate.version>5.1.0.Final</hibernate.version>
<commons-fileupload.version>1.3.3</commons-fileupload.version>
<bouncycastle.version>1.61</bouncycastle.version>
<!-- SCA and Reporting Plugin Versions -->
<surefire.version>2.19.1</surefire.version>
<surefire.report.version>2.19.1</surefire.report.version>
<checkstyle.version>2.16</checkstyle.version>
<findbugs.version>3.0.1</findbugs.version>
<findsecbugs.version>1.4.1</findsecbugs.version>
<pmd.version>3.5</pmd.version>
<!-- Cobertura version must be left at 2.5.2 due to issues with JSF + JUnit -->
<cobertura.version>2.5.2</cobertura.version>
<dependency.check.version>1.4.5</dependency.check.version>
<!-- Note: Sonar Plugin version is different than SonarQube version -->
<sonar.plugin.version>2.6</sonar.plugin.version>
<!-- SCA and Reporting Options -->
<checkstyle.skip>false</checkstyle.skip>
<skip.findbugs>false</skip.findbugs>
<skip.cobertura>true</skip.cobertura>
<skip.source>true</skip.source>
<pmd.failOnViolation>false</pmd.failOnViolation>
<cobertura.check.haltOnFailure>false</cobertura.check.haltOnFailure>
<cobertura.totalBranchRate>85</cobertura.totalBranchRate>
<cobertura.totalLineRate>85</cobertura.totalLineRate>
<!-- DB Options -->
<db.host>localhost</db.host>
<db.password>nhincpass</db.password>
<db.port>3306</db.port>
<db.user>nhincuser</db.user>
<mysql.root.password>NHIE-Gateway</mysql.root.password>
<mysqldriver.version>5.1.10</mysqldriver.version>
<!--jUnit Options-->
<surefire.reuseforks>true</surefire.reuseforks>
<surefire.forkcount>1</surefire.forkcount>
</properties>
<scm>
<connection>scm:git:[email protected]:${git.username}/CONNECT.git</connection>
<developerConnection>scm:git:[email protected]:${git.username}/CONNECT.git</developerConnection>
<url>https://github.com/${git.username}/CONNECT</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>ThirdParty</module>
<module>build-tools</module>
<module>Product</module>
</modules>
<licenses>
<license>
<name>CONNECT License Agreement</name>
<url>http://www.connectopensource.org/product/licensing</url>
</license>
</licenses>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<distributionManagement>
<site>
<id>github-pages-site</id>
<name>Deployment through GitHub's site deployment plugin</name>
<url>site/${project.version}</url>
</site>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<!-- Maven Standard Lifecycle Goal Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>${compiler.source}</source>
<target>${compiler.target}</target>
<testSource>${compiler.source}</testSource>
<testTarget>${compiler.target}</testTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
</plugin>
<!-- Packaging and Artifact Manipulation Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<!-- use baseVersion instead of timestamp version to support skinny WARS for SNAPSHOT versions -->
<outputFileNameMapping>@{artifactId}@-@{baseVersion}@.@{extension}@</outputFileNameMapping>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<skipSource>${skip.source}</skipSource>
<attach>true</attach>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<!-- Test Execution Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<reuseForks>${surefire.reuseforks}</reuseForks>
<forkCount>${surefire.forkcount}</forkCount>
<argLine>-XX:MaxPermSize=1012m -noverify</argLine>
<systemProperties>
<property>
<name>com.sun.aas.instanceRoot</name>
<!--value>${project.baseUri}/test-classes/</value-->
<value>${project.build.testOutputDirectory}</value>
</property>
<property>
<name>nhinc.properties.dir</name>
<!--value>${project.baseUri}/test-classes/</value-->
<value>${project.build.testOutputDirectory}</value>
</property>
</systemProperties>
</configuration>
</plugin>
<!-- IDE Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<useProjectReferences>true</useProjectReferences>
<projectNameTemplate>[artifactId]-[version]</projectNameTemplate>
</configuration>
</plugin>
<!-- Static Code Analysis Plugins -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${pmd.version}</version>
<configuration>
<targetJdk>${compiler.target}</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.version}</version>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency.check.version}</version>
<configuration>
<format>ALL</format>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.plugin.version}</version>
</plugin>
<!-- Reporting Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.6</version>
</plugin>
<!-- Web Service Plugins -->
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<!-- | allows markdown syntax for site generation.
To use it place files below | src/site/markdown/[filename].md -->
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
<configuration>
<skipDeploy>true</skipDeploy>
</configuration>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
<linkOnly>true</linkOnly>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${surefire.report.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<formats>
<format>html</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${pmd.version}</version>
<configuration>
<targetJdk>${compiler.target}</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>plugin</artifactId>
<version>${findsecbugs.version}</version>
</plugin>
</plugins>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>check</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>github-site-deploy</id>
<properties>
<github.site.merge>true</github.site.merge>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.7</version>
<configuration>
<!-- Config to place every module in the correct subfolder -->
<path>${project.distributionManagement.site.url}</path>
<merge>${github.site.merge}</merge>
<message>Building site for ${project.version}</message>
<server>github</server>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site-deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>