pom.xml 6.39 KB
Newer Older
1
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Matthias Betz's avatar
Matthias Betz committed
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5
6
	<modelVersion>4.0.0</modelVersion>
	<groupId>de.hft.stuttgart</groupId>
	<artifactId>CityDoctorParent</artifactId>
Matthias Betz's avatar
Matthias Betz committed
7
	<version>3.10.2</version>
8
9
10
11
12
	<packaging>pom</packaging>
	<name>CityDoctorParent</name>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Matthias Betz's avatar
Matthias Betz committed
13
14
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
Matthias Betz's avatar
Matthias Betz committed
15
		<revision>${project.version}</revision>
16
		<nonMavenLibsPath>${project.baseUri}../non-maven-libs</nonMavenLibsPath>
17
	</properties>
Matthias Betz's avatar
Matthias Betz committed
18

19
20
21
22
23
24
	<repositories>
		<repository>
			<id>non-maven-libs</id>
			<url>${nonMavenLibsPath}</url>
		</repository>
	</repositories>
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.22.0</version>
					<configuration>
						<testFailureIgnore>false</testFailureIgnore>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorModel</artifactId>
				<version>${revision}</version>
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
48
49
50
51
52
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorAutoPro</artifactId>
				<version>${revision}</version>
			</dependency>
53
54
55
56
57
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorValidation</artifactId>
				<version>${revision}</version>
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
58
59
60
61
62
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorGUI</artifactId>
				<version>${revision}</version>
			</dependency>
63
64
65
66
67
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorEdge</artifactId>
				<version>${revision}</version>
			</dependency>
68
69
70
71
72
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorCheckResult</artifactId>
				<version>${revision}</version>
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
73
74
75
76
77
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorHealer</artifactId>
				<version>${revision}</version>
			</dependency>
78
79
80
81
			<!-- https://mvnrepository.com/artifact/net.sf.saxon/Saxon-HE -->
			<dependency>
				<groupId>net.sf.saxon</groupId>
				<artifactId>Saxon-HE</artifactId>
Matthias Betz's avatar
Matthias Betz committed
82
				<version>10.6</version>
83
84
85
86
87
88
89
90
91
92
93
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-core</artifactId>
				<version>5.4.3.Final</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.citygml4j/citygml4j -->
			<dependency>
				<groupId>org.citygml4j</groupId>
				<artifactId>citygml4j</artifactId>
94
				<version>2.11.2</version>
95
96
97
98
99
100
101
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.citygml4j.ade/energy-ade-citygml4j -->
			<dependency>
				<groupId>org.citygml4j.ade</groupId>
				<artifactId>energy-ade-citygml4j</artifactId>
				<version>1.0.0</version>
			</dependency>
102
103
104
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>citygml4j-quality-ade</artifactId>
Matthias Betz's avatar
Matthias Betz committed
105
				<version>0.1.3</version>
106
			</dependency>
107
108
109
110
			<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
			<dependency>
				<groupId>org.apache.xmlgraphics</groupId>
				<artifactId>fop</artifactId>
111
				<version>2.6</version>
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
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.jdom/jdom2 -->
			<dependency>
				<groupId>org.jdom</groupId>
				<artifactId>jdom2</artifactId>
				<version>2.0.6</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/junit/junit -->
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.12</version>
				<scope>test</scope>
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.jogamp.gluegen/gluegen-rt-main -->
			<dependency>
				<groupId>org.jogamp.gluegen</groupId>
				<artifactId>gluegen-rt-main</artifactId>
				<version>2.3.2</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/gov.nist.math/jama -->
			<dependency>
				<groupId>gov.nist.math</groupId>
				<artifactId>jama</artifactId>
				<version>1.0.3</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.jogamp.jogl/jogl-all-main -->
			<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>
Matthias Betz's avatar
Matthias Betz committed
147
				<version>2.17.1</version>
148
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
149
			<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
150
151
152
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-core</artifactId>
Matthias Betz's avatar
Matthias Betz committed
153
				<version>2.17.1</version>
154
155
156
157
158
159
160
161
162
163
164
165
166
			</dependency>
			<dependency>
				<groupId>org.yaml</groupId>
				<artifactId>snakeyaml</artifactId>
				<version>1.24</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j18-impl -->
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-slf4j18-impl</artifactId>
				<version>2.11.2</version>
			</dependency>
			<dependency>
167
				<groupId>org.locationtech.proj4j</groupId>
168
				<artifactId>proj4j</artifactId>
169
				<version>1.1.2</version>
170
171
172
173
174
175
176
177
178
			</dependency>
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-search-orm</artifactId>
				<version>5.11.3.Final</version>
			</dependency>
			<dependency>
				<groupId>org.locationtech.jts</groupId>
				<artifactId>jts-core</artifactId>
179
				<version>1.18.1</version>
180
181
182
			</dependency>
			<dependency>
				<groupId>com.sun.xml.bind</groupId>
183
				<artifactId>jaxb-impl</artifactId>
184
				<version>2.3.3</version>
185
186
			</dependency>
			<dependency>
187
188
				<groupId>jakarta.xml.bind</groupId>
				<artifactId>jakarta.xml.bind-api</artifactId>
189
				<version>2.3.3</version>
190
			</dependency>
191
192
		</dependencies>
	</dependencyManagement>
Matthias Betz's avatar
Matthias Betz committed
193
194
195
196
197
198
199
200
	<dependencies>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>3.8.0</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
201
202
203
204
205
206
207
	<modules>
		<module>CityDoctorModel</module>
		<module>CityDoctorValidation</module>
		<module>CityDoctorEdge</module>
		<module>CityDoctorCheckResult</module>
	</modules>
</project>