-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpom.xml
112 lines (101 loc) · 4.21 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
<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>
<parent>
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-parent</artifactId>
<version>2.192.0-SNAPSHOT</version>
</parent>
<artifactId>bfd-server-parent</artifactId>
<packaging>pom</packaging>
<description>
A parent POM for the bfd-server-* projects, which provide a FHIR-compliant API for querying Medicare beneficiary
data.
</description>
<properties>
<!-- Configure the BFD Server, as it will be run via the exec
plugin. These settings are pulled out as POM properties so that they can
be adjusted via profiles. -->
<its.bfdServer.jvmargs>-Xmx4g</its.bfdServer.jvmargs>
<!-- Should work out of the box on Linux, but likely needs to be customized
(in settings.xml) for Windows dev environments. Seedev/devenv-readme.md
for details. -->
<bash.exe>bash</bash.exe>
</properties>
<modules>
<module>bfd-server-docs</module>
<module>bfd-server-launcher-sample</module>
<module>bfd-server-launcher</module>
<module>bfd-server-shared-utils</module>
<module>bfd-server-war</module>
<module>bfd-server-image</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Provides the JPA entities used to represent the Blue Button API
backend's data in the database. -->
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-model-rif</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!-- Provides the JPA entities used to represent the Blue Button API
backend's data in the database. -->
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-model-rda</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Provides sample data used in tests. -->
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-model-rif-samples</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Used to load sample data in tests. -->
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-pipeline-rif-load</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>gov.cms.bfd.data.fda.utility</groupId>
<artifactId>bfd-data-fda</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<!-- Provides utility code and dependencies that are shared by (more or
less) all of the other BFD modules. -->
<groupId>gov.cms.bfd</groupId>
<artifactId>bfd-shared-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>gov.cms.bfd.data.npi</groupId>
<artifactId>bfd-data-npi</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>