pom.xml 11.4 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>de.hft.stuttgart</groupId>
    <artifactId>CityDoctorParent</artifactId>
    <version>3.14.1</version>
    <packaging>pom</packaging>
    <name>CityDoctorParent</name>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <log4j.version>2.18.0</log4j.version>
        <revision>${project.version}</revision>
        <nonMavenLibsPath>${project.baseUri}../non-maven-libs</nonMavenLibsPath>
        <jre-version-short>17.0.10</jre-version-short>
        <jre-version>${jre-version-short}+13</jre-version>
    </properties>
    <repositories>
        <repository>
            <id>non-maven-libs</id>
            <url>${nonMavenLibsPath}</url>
        </repository>
        <repository>
            <id>sonartype</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </repository>
    </repositories>
    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.22.0</version>
                    <configuration>
                        <testFailureIgnore>false</testFailureIgnore>
                        <excludes>
                            <exclude>**/SolidSelfIntCheckFalsePositiveBigMeshTest.java</exclude>
                        </excludes>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
46
47
48
49
50
51
52
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.13.0</version>
                <configuration>
                    <source>17</source>
                    <target>17</target>
Riegel's avatar
Riegel committed
53
                    <compilerId>eclipse</compilerId>
54
55
56
                    <showWarnings>true</showWarnings>
                    <showDeprecation>true</showDeprecation>
                </configuration>
Riegel's avatar
Riegel committed
57
                <!--dependencies>
58
59
                    <dependency>
                        <groupId>org.codehaus.plexus</groupId>
Riegel's avatar
Riegel committed
60
                        <artifactId>plexus-compiler-api</artifactId>
Riegel's avatar
Riegel committed
61
                        <version>2.15.0</version>
Riegel's avatar
Riegel committed
62
63
64
65
                    </dependency>
                    <dependency>
                        <groupId>org.codehaus.plexus</groupId>
                        <artifactId>plexus-compiler-manager</artifactId>
Riegel's avatar
Riegel committed
66
                        <version>2.15.0</version>
67
68
                    </dependency>
                    <dependency>
Riegel's avatar
Riegel committed
69
70
                        <groupId>org.codehaus.plexus</groupId>
                        <artifactId>plexus-compiler-eclipse</artifactId>
Riegel's avatar
Riegel committed
71
                        <version>2.15.0</version>
72
                    </dependency>
Riegel's avatar
Riegel committed
73
74
75
76
77
                    <dependency>
                        <groupId>org.codehaus.plexus</groupId>
                        <artifactId>plexus-compiler-eclipse</artifactId>
                        <version>2.15.0</version>
                    </dependency>
Riegel's avatar
Riegel committed
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
                </dependencies-->
            </plugin>
            <plugin>
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-compiler-api</artifactId>
                <version>2.15.0</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-compiler-manager</artifactId>
                <version>2.15.0</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-compiler-eclipse</artifactId>
                <version>2.15.0</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-compiler-eclipse</artifactId>
                <version>2.15.0</version>
99
100
            </plugin>
        </plugins>
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
    </build>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.openjfx</groupId>
                <artifactId>javafx-controls</artifactId>
                <version>17.0.2</version>
            </dependency>
            <dependency>
                <groupId>org.openjfx</groupId>
                <artifactId>javafx-fxml</artifactId>
                <version>17.0.2</version>
            </dependency>
            <dependency>
                <groupId>org.openjfx</groupId>
                <artifactId>javafx-swing</artifactId>
                <version>17.0.2</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorModel</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorAutoPro</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorValidation</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorGUI</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorEdge</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorCheckResult</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>CityDoctorHealer</artifactId>
                <version>${revision}</version>
            </dependency>
            <dependency>
                <groupId>net.sf.saxon</groupId>
                <artifactId>Saxon-HE</artifactId>
                <version>12.2</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-core</artifactId>
                <version>5.6.9.Final</version>
            </dependency>
            <dependency>
                <groupId>org.citygml4j</groupId>
                <artifactId>citygml4j-core</artifactId>
                <version>3.2.0</version>
            </dependency>
            <dependency>
                <groupId>org.citygml4j</groupId>
                <artifactId>citygml4j-xml</artifactId>
                <version>3.2.0</version>
            </dependency>
            <dependency>
                <groupId>de.hft.stuttgart</groupId>
                <artifactId>citygml4j-quality-ade</artifactId>
                <version>3.2.0</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlgraphics</groupId>
                <artifactId>fop</artifactId>
                <version>2.7</version>
            </dependency>
            <dependency>
                <groupId>org.jdom</groupId>
                <artifactId>jdom2</artifactId>
                <version>2.0.6.1</version>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.13.2</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jogamp.gluegen</groupId>
                <artifactId>gluegen-rt-main</artifactId>
                <version>2.3.2</version>
            </dependency>
            <dependency>
                <groupId>gov.nist.math</groupId>
                <artifactId>jama</artifactId>
                <version>1.0.3</version>
            </dependency>
            <dependency>
                <groupId>org.jogamp.jogl</groupId>
                <artifactId>jogl-all-main</artifactId>
                <version>2.3.2</version>
            </dependency>
            <dependency>
                <groupId>org.apache.logging.log4j</groupId>
                <artifactId>log4j-api</artifactId>
                <version>${log4j.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.logging.log4j</groupId>
                <artifactId>log4j-core</artifactId>
                <version>${log4j.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.logging.log4j</groupId>
                <artifactId>log4j-jul</artifactId>
                <version>${log4j.version}</version>
            </dependency>
            <dependency>
                <groupId>org.yaml</groupId>
                <artifactId>snakeyaml</artifactId>
                <version>1.30</version>
            </dependency>
            <dependency>
                <groupId>org.apache.logging.log4j</groupId>
                <artifactId>log4j-slf4j18-impl</artifactId>
                <version>${log4j.version}</version>
            </dependency>
            <dependency>
                <groupId>org.locationtech.proj4j</groupId>
                <artifactId>proj4j</artifactId>
                <version>1.1.5</version>
            </dependency>
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-search-orm</artifactId>
                <version>5.11.9.Final</version>
            </dependency>
            <dependency>
                <groupId>org.locationtech.jts</groupId>
                <artifactId>jts-core</artifactId>
                <version>1.19.0</version>
            </dependency>
            <dependency>
                <groupId>com.sun.xml.bind</groupId>
                <artifactId>jaxb-impl</artifactId>
                <version>2.3.3</version>
            </dependency>
            <dependency>
                <groupId>jakarta.xml.bind</groupId>
                <artifactId>jakarta.xml.bind-api</artifactId>
                <version>2.3.3</version>
            </dependency>
Riegel's avatar
Riegel committed
260
            <!--dependency>
261
262
263
264
                <groupId>org.codehaus.plexus</groupId>
                <artifactId>plexus-compilers</artifactId>
                <version>2.15.0</version>
                <type>pom</type>
Riegel's avatar
Riegel committed
265
            </dependency-->
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>4.6.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <modules>
        <module>CityDoctorModel</module>
        <module>CityDoctorValidation</module>
        <module>CityDoctorEdge</module>
        <module>CityDoctorCheckResult</module>
        <module>CityDoctorGUI</module>
        <module>CityDoctorAutoPro</module>
        <module>CityDoctorHealer</module>
        <module>CityDoctorHealerGenetic</module>
        <module>CityDoctorHealerGUI</module>
        <module>CityDoctorWebService</module>
    </modules>
Matthias Betz's avatar
Matthias Betz committed
288
</project>