-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
152 lines (144 loc) · 6.07 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com).
~
~ WSO2 LLC. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implihe
~ specific language governing permissions and limitationsed. See the License for t
~ under the License.
-->
<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>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>2.2.2</version>
<packaging>pom</packaging>
<modules>
<module>native/fhir-to-bal-template</module>
<module>native/fhir-to-bal-lib</module>
<module>native/cds-bal-template</module>
<module>native/health-cli</module>
<module>ballerina</module>
</modules>
<properties>
<hapi.version>4.2.0</hapi.version>
<velocity.version>1.7</velocity.version>
<picocli.version>4.0.1</picocli.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.healthcare.tool.framework>1.2.0</version.healthcare.tool.framework>
<version.ballerina.cli>2201.8.1</version.ballerina.cli>
<maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-exec-plugin.version>1.6.0</maven-exec-plugin.version>
<version.swagger.core>2.1.5</version.swagger.core>
<version.swagger.parser>2.0.26</version.swagger.parser>
<version.jackson.annotations>2.12.1</version.jackson.annotations>
<version.gson>2.11.0</version.gson>
<version.cava-toml>0.5.0</version.cava-toml>
<version.json.schema.validator>1.5.1</version.json.schema.validator>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/info.picocli/picocli -->
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>${picocli.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.ballerinalang/ballerina-cli -->
<dependency>
<groupId>org.ballerinalang</groupId>
<artifactId>ballerina-cli</artifactId>
<version>${version.ballerina.cli}</version>
</dependency>
<dependency>
<groupId>org.wso2.healthcare.codegen.tool.framework</groupId>
<artifactId>fhir-core</artifactId>
<version>${version.healthcare.tool.framework}</version>
</dependency>
<dependency>
<groupId>org.wso2.healthcare.codegen.tool.framework</groupId>
<artifactId>fhir-core</artifactId>
<version>${version.healthcare.tool.framework}</version>
</dependency>
<!-- HAPI lib dependencies -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>${hapi.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>${hapi.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-r4</artifactId>
<version>${hapi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>${velocity.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>${version.swagger.core}</version>
</dependency>
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser</artifactId>
<version>${version.swagger.parser}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${version.jackson.annotations}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${version.gson}</version>
</dependency>
<dependency>
<groupId>net.consensys.cava</groupId>
<artifactId>cava-toml</artifactId>
<version>${version.cava-toml}</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>${version.json.schema.validator}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>ballerina-language-repo</id>
<url>https://maven.pkg.github.com/ballerina-platform/ballerina-lang</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
</repositories>
</project>