forked from kairos-fhir/kairos-fhir-dsl-mapping-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
147 lines (132 loc) · 4.87 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
<?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>de.kairos</groupId>
<artifactId>kairos-fhir-dsl-mapping-example</artifactId>
<version>1.35.0-SNAPSHOT</version>
<description>This project contains kairos-fhir-dsl example mappings for the CentraXX FHIR custom export interface.</description>
<url>https://github.com/kairos-fhir/kairos-fhir-dsl-mapping-example</url>
<organization>
<name>Kairos GmbH</name>
<url>https://www.kairos.de</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.compiler.level>1.8</java.compiler.level>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<kairos-fhir-dsl.version>1.40.0</kairos-fhir-dsl.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<gmavenplus-plugin.version>1.9.1</gmavenplus-plugin.version>
<findbugs.version>3.0.2</findbugs.version>
<slf4j-simple.version>1.7.36</slf4j-simple.version>
</properties>
<scm>
<connection>scm:git:https://github.com/kairos-fhir/kairos-fhir-dsl-mapping-example.git</connection>
<developerConnection>scm:git:https://github.com/kairos-fhir/kairos-fhir-dsl-mapping-example.git</developerConnection>
<tag>bugfix-1.30</tag>
</scm>
<dependencies>
<dependency>
<groupId>de.kairos</groupId>
<artifactId>kairos-fhir-dsl</artifactId>
<version>${kairos-fhir-dsl.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${findbugs.version}</version>
</dependency>
<!-- Binding/provider for Simple implementation, which outputs all events to System.err. Only messages of level INFO and higher are printed.
This binding may be useful in the context of small applications. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j-simple.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>centraxx</id>
<url>https://nexus.kairosbochum.de/repository/centraxx</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>centraxx-snapshots</id>
<url>https://nexus.kairosbochum.de/repository/centraxx-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>central</id>
<url>https://nexus.kairosbochum.de/repository/maven-central</url>
</repository>
<repository>
<id>maven-central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>github-kairos-fhir</id>
<name>GitHub kairos-fhir Apache Maven Packages</name>
<url>https://maven.pkg.github.com/kairos-fhir/kairos-fhir-dsl-mapping-example</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>https://nexus.kairosbochum.de/repository/maven-central</url>
</pluginRepository>
<pluginRepository>
<id>maven-central</id>
<url>https://repo1.maven.org/maven2/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.compiler.level}</source>
<target>${java.compiler.level}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<maxmem>1500m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>${gmavenplus-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>compileTests</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>