This repository was archived by the owner on Aug 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
121 lines (107 loc) · 4.03 KB
/
pom.xml
File metadata and controls
121 lines (107 loc) · 4.03 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
<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>
<prerequisites>
<maven>3.3</maven>
</prerequisites>
<parent>
<groupId>gov.hhs.cms.bluebutton</groupId>
<artifactId>bluebutton-parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
</parent>
<groupId>gov.hhs.cms.bluebutton.fhir</groupId>
<artifactId>bluebutton-server-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>bluebutton-server-parent</name>
<description>
The CMS Blue Button API project provides Medicare beneficiaries with access
to their health care data, and supports an ecosystem of third-party
applications that can leverage that data. This is the parent POM for
the project.
</description>
<url>https://github.com/HHSIDEAlab/bluebutton-server</url>
<issueManagement>
<!-- There doesn't seem to be any tooling support for this yet, but it
doesn't hurt to include it. -->
<system>GitHub Issues</system>
<url>https://github.com/HHSIDEAlab/bluebutton-server/issues</url>
</issueManagement>
<ciManagement>
<!-- Per http://stackoverflow.com/questions/14754372/whats-the-purpose-of-the-maven-3-cimanagement-configuration#comment20752353_14762245,
Sonar (at least) can use this information. -->
<system>jenkins</system>
<url>http://builds.hhsdevcloud.us/job/HHSIDEAlab/job/bluebutton-server/</url>
</ciManagement>
<scm>
<!-- URL format taken from http://www.sonatype.com/people/2009/09/maven-tips-and-tricks-using-github/ -->
<connection>scm:git:git@github.com:HHSIDEAlab/bluebutton-server.git</connection>
<developerConnection>scm:git:git@github.com:HHSIDEAlab/bluebutton-server.git</developerConnection>
<url>https://github.com/HHSIDEAlab/bluebutton-server</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>bluebutton-server-app</module>
</modules>
<properties>
<bluebutton-data-model.version>1.0.0-SNAPSHOT</bluebutton-data-model.version>
<bluebutton-data-pipeline.version>0.1.0-SNAPSHOT</bluebutton-data-pipeline.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Provides the JPA entities used to represent the Blue Button API
backend's data in the database. -->
<groupId>gov.hhs.cms.bluebutton.data.model</groupId>
<artifactId>bluebutton-data-model-rif</artifactId>
<version>${bluebutton-data-model.version}</version>
</dependency>
<dependency>
<!-- Used as a logging backed/target for SLF4J. -->
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<!-- The test framework used for unit and integration tests. -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Provides sample data used in tests. -->
<groupId>gov.hhs.cms.bluebutton.data.model</groupId>
<artifactId>bluebutton-data-model-rif-samples</artifactId>
<version>${bluebutton-data-model.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Used to load sample data in tests. -->
<groupId>gov.hhs.cms.bluebutton.data.pipeline</groupId>
<artifactId>bluebutton-data-pipeline-rif-load</artifactId>
<version>${bluebutton-data-pipeline.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<configuration>
<!-- This default config is used in the Jenkinsfile CI build. -->
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>