Skip to content

Commit 46070ff

Browse files
committed
patched version
1 parent ef3e816 commit 46070ff

File tree

11 files changed

+3559
-3542
lines changed

11 files changed

+3559
-3542
lines changed

sormas-api/pom.xml

Lines changed: 133 additions & 132 deletions
Original file line numberDiff line numberDiff line change
@@ -1,134 +1,135 @@
1-
<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">
2-
<parent>
3-
<groupId>de.symeda.sormas</groupId>
4-
<artifactId>sormas-base</artifactId>
5-
<version>1.103.0</version>
6-
<relativePath>../sormas-base</relativePath>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
<artifactId>sormas-api</artifactId>
10-
<name>${project.artifactId}</name>
11-
12-
<build>
13-
<finalName>${project.artifactId}</finalName>
14-
<plugins>
15-
<plugin>
16-
<groupId>io.github.git-commit-id</groupId>
17-
<artifactId>git-commit-id-maven-plugin</artifactId>
18-
</plugin>
19-
</plugins>
20-
</build>
21-
22-
<dependencies>
23-
24-
<!-- *** Payara modules *** -->
25-
26-
<dependency>
27-
<groupId>javax</groupId>
28-
<artifactId>javaee-web-api</artifactId>
29-
</dependency>
30-
31-
<!-- *** Payara modules END *** -->
32-
33-
<!-- *** Domain libs *** -->
34-
<!-- List dependencies here as "compile" scope so that they will be available as transitive dependencies when using sormas-api in other modules -->
35-
36-
<dependency>
37-
<groupId>com.fasterxml.jackson.core</groupId>
38-
<artifactId>jackson-databind</artifactId>
39-
<scope>compile</scope>
40-
</dependency>
41-
42-
<dependency>
43-
<groupId>com.github.mpkorstanje</groupId>
44-
<artifactId>simmetrics-core</artifactId>
45-
<scope>compile</scope>
46-
</dependency>
47-
48-
<dependency>
49-
<groupId>com.google.guava</groupId>
50-
<artifactId>guava</artifactId>
51-
<scope>compile</scope>
52-
</dependency>
53-
54-
<dependency>
55-
<groupId>com.opencsv</groupId>
56-
<artifactId>opencsv</artifactId>
57-
<scope>compile</scope>
58-
<exclusions>
59-
<exclusion>
60-
<groupId>commons-collections</groupId>
61-
<artifactId>commons-collections</artifactId>
62-
<!-- Prioritise to use commons-collections4 -->
63-
</exclusion>
64-
</exclusions>
65-
</dependency>
66-
67-
<dependency>
68-
<groupId>commons-codec</groupId>
69-
<artifactId>commons-codec</artifactId>
70-
<scope>compile</scope>
71-
</dependency>
72-
<dependency>
73-
<groupId>commons-io</groupId>
74-
<artifactId>commons-io</artifactId>
75-
<scope>compile</scope>
76-
</dependency>
77-
78-
<dependency>
79-
<groupId>org.apache.commons</groupId>
80-
<artifactId>commons-collections4</artifactId>
81-
<scope>compile</scope>
82-
</dependency>
83-
<dependency>
84-
<groupId>org.apache.commons</groupId>
85-
<artifactId>commons-lang3</artifactId>
86-
<scope>compile</scope>
87-
</dependency>
88-
<dependency>
89-
<groupId>org.apache.commons</groupId>
90-
<artifactId>commons-text</artifactId>
91-
<scope>compile</scope>
92-
</dependency>
93-
94-
<dependency>
95-
<groupId>org.jsoup</groupId>
96-
<artifactId>jsoup</artifactId>
97-
<scope>compile</scope>
98-
</dependency>
99-
100-
<dependency>
101-
<groupId>org.springframework</groupId>
102-
<artifactId>spring-context</artifactId>
103-
<scope>compile</scope>
104-
</dependency>
105-
106-
<!-- *** Domain libs END *** -->
107-
108-
<!-- *** Test dependencies *** -->
109-
110-
<dependency>
111-
<groupId>ch.qos.logback</groupId>
112-
<artifactId>logback-classic</artifactId>
113-
<scope>test</scope>
114-
</dependency>
115-
116-
<dependency>
117-
<groupId>com.tngtech.archunit</groupId>
118-
<artifactId>archunit</artifactId>
119-
</dependency>
120-
<dependency>
121-
<groupId>com.tngtech.archunit</groupId>
122-
<artifactId>archunit-junit5</artifactId>
123-
</dependency>
124-
125-
<dependency>
126-
<groupId>uk.co.jemos.podam</groupId>
127-
<artifactId>podam</artifactId>
128-
</dependency>
129-
130-
<!-- *** Test dependencies END *** -->
131-
132-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<groupId>de.symeda.sormas</groupId>
5+
<artifactId>sormas-base</artifactId>
6+
<version>1.103.1</version>
7+
<relativePath>../sormas-base</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>sormas-api</artifactId>
11+
<name>${project.artifactId}</name>
12+
13+
<build>
14+
<finalName>${project.artifactId}</finalName>
15+
<plugins>
16+
<plugin>
17+
<groupId>io.github.git-commit-id</groupId>
18+
<artifactId>git-commit-id-maven-plugin</artifactId>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
23+
<dependencies>
24+
25+
<!-- *** Payara modules *** -->
26+
27+
<dependency>
28+
<groupId>javax</groupId>
29+
<artifactId>javaee-web-api</artifactId>
30+
</dependency>
31+
32+
<!-- *** Payara modules END *** -->
33+
34+
<!-- *** Domain libs *** -->
35+
<!-- List dependencies here as "compile" scope so that they will be available as transitive dependencies when using sormas-api in other modules -->
36+
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
<scope>compile</scope>
41+
</dependency>
42+
43+
<dependency>
44+
<groupId>com.github.mpkorstanje</groupId>
45+
<artifactId>simmetrics-core</artifactId>
46+
<scope>compile</scope>
47+
</dependency>
48+
49+
<dependency>
50+
<groupId>com.google.guava</groupId>
51+
<artifactId>guava</artifactId>
52+
<scope>compile</scope>
53+
</dependency>
54+
55+
<dependency>
56+
<groupId>com.opencsv</groupId>
57+
<artifactId>opencsv</artifactId>
58+
<scope>compile</scope>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>commons-collections</groupId>
62+
<artifactId>commons-collections</artifactId>
63+
<!-- Prioritise to use commons-collections4 -->
64+
</exclusion>
65+
</exclusions>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>commons-codec</groupId>
70+
<artifactId>commons-codec</artifactId>
71+
<scope>compile</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>commons-io</groupId>
75+
<artifactId>commons-io</artifactId>
76+
<scope>compile</scope>
77+
</dependency>
78+
79+
<dependency>
80+
<groupId>org.apache.commons</groupId>
81+
<artifactId>commons-collections4</artifactId>
82+
<scope>compile</scope>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.apache.commons</groupId>
86+
<artifactId>commons-lang3</artifactId>
87+
<scope>compile</scope>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.apache.commons</groupId>
91+
<artifactId>commons-text</artifactId>
92+
<scope>compile</scope>
93+
</dependency>
94+
95+
<dependency>
96+
<groupId>org.jsoup</groupId>
97+
<artifactId>jsoup</artifactId>
98+
<scope>compile</scope>
99+
</dependency>
100+
101+
<dependency>
102+
<groupId>org.springframework</groupId>
103+
<artifactId>spring-context</artifactId>
104+
<scope>compile</scope>
105+
</dependency>
106+
107+
<!-- *** Domain libs END *** -->
108+
109+
<!-- *** Test dependencies *** -->
110+
111+
<dependency>
112+
<groupId>ch.qos.logback</groupId>
113+
<artifactId>logback-classic</artifactId>
114+
<scope>test</scope>
115+
</dependency>
116+
117+
<dependency>
118+
<groupId>com.tngtech.archunit</groupId>
119+
<artifactId>archunit</artifactId>
120+
</dependency>
121+
<dependency>
122+
<groupId>com.tngtech.archunit</groupId>
123+
<artifactId>archunit-junit5</artifactId>
124+
</dependency>
125+
126+
<dependency>
127+
<groupId>uk.co.jemos.podam</groupId>
128+
<artifactId>podam</artifactId>
129+
</dependency>
130+
131+
<!-- *** Test dependencies END *** -->
132+
133+
</dependencies>
133134

134135
</project>

0 commit comments

Comments
 (0)