pom.xml 6.39 KB
Newer Older
Matthias Betz's avatar
Matthias Betz committed
1
<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">
2
3
4
	<modelVersion>4.0.0</modelVersion>
	<groupId>de.hft.stuttgart</groupId>
	<artifactId>CityDoctorParent</artifactId>
Matthias Betz's avatar
Matthias Betz committed
5
	<version>3.10.4</version>
6
7
8
9
10
	<packaging>pom</packaging>
	<name>CityDoctorParent</name>

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

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

	<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
46
47
48
49
50
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorAutoPro</artifactId>
				<version>${revision}</version>
			</dependency>
51
52
53
54
55
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorValidation</artifactId>
				<version>${revision}</version>
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
56
57
58
59
60
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorGUI</artifactId>
				<version>${revision}</version>
			</dependency>
61
62
63
64
65
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorEdge</artifactId>
				<version>${revision}</version>
			</dependency>
66
67
68
69
70
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorCheckResult</artifactId>
				<version>${revision}</version>
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
71
72
73
74
75
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorHealer</artifactId>
				<version>${revision}</version>
			</dependency>
76
77
78
79
			<!-- 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
80
				<version>11.3</version>
81
82
83
84
85
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-core</artifactId>
Matthias Betz's avatar
Matthias Betz committed
86
				<version>5.6.9.Final</version>
87
88
89
90
91
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.citygml4j/citygml4j -->
			<dependency>
				<groupId>org.citygml4j</groupId>
				<artifactId>citygml4j</artifactId>
Matthias Betz's avatar
Matthias Betz committed
92
				<version>2.12.1</version>
93
94
95
96
97
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.citygml4j.ade/energy-ade-citygml4j -->
			<dependency>
				<groupId>org.citygml4j.ade</groupId>
				<artifactId>energy-ade-citygml4j</artifactId>
Matthias Betz's avatar
Matthias Betz committed
98
				<version>1.0.4</version>
99
			</dependency>
100
101
102
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>citygml4j-quality-ade</artifactId>
Matthias Betz's avatar
Matthias Betz committed
103
				<version>0.1.3</version>
104
			</dependency>
105
106
107
108
			<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
			<dependency>
				<groupId>org.apache.xmlgraphics</groupId>
				<artifactId>fop</artifactId>
Matthias Betz's avatar
Matthias Betz committed
109
				<version>2.7</version>
110
111
112
113
114
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.jdom/jdom2 -->
			<dependency>
				<groupId>org.jdom</groupId>
				<artifactId>jdom2</artifactId>
Matthias Betz's avatar
Matthias Betz committed
115
				<version>2.0.6.1</version>
116
117
118
119
120
			</dependency>
			<!-- https://mvnrepository.com/artifact/junit/junit -->
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
Matthias Betz's avatar
Matthias Betz committed
121
				<version>4.13.2</version>
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
				<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
145
				<version>2.17.2</version>
146
			</dependency>
Matthias Betz's avatar
Matthias Betz committed
147
			<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
148
149
150
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-core</artifactId>
Matthias Betz's avatar
Matthias Betz committed
151
				<version>2.17.2</version>
152
153
154
155
			</dependency>
			<dependency>
				<groupId>org.yaml</groupId>
				<artifactId>snakeyaml</artifactId>
Matthias Betz's avatar
Matthias Betz committed
156
				<version>1.30</version>
157
158
159
160
161
			</dependency>
			<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j18-impl -->
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-slf4j18-impl</artifactId>
Matthias Betz's avatar
Matthias Betz committed
162
				<version>2.17.2</version>
163
164
			</dependency>
			<dependency>
165
				<groupId>org.locationtech.proj4j</groupId>
166
				<artifactId>proj4j</artifactId>
Matthias Betz's avatar
Matthias Betz committed
167
				<version>1.1.5</version>
168
169
170
171
			</dependency>
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-search-orm</artifactId>
Matthias Betz's avatar
Matthias Betz committed
172
				<version>5.11.9.Final</version>
173
174
175
176
			</dependency>
			<dependency>
				<groupId>org.locationtech.jts</groupId>
				<artifactId>jts-core</artifactId>
Matthias Betz's avatar
Matthias Betz committed
177
				<version>1.19.0</version>
178
179
180
			</dependency>
			<dependency>
				<groupId>com.sun.xml.bind</groupId>
181
				<artifactId>jaxb-impl</artifactId>
182
				<version>2.3.3</version>
183
184
			</dependency>
			<dependency>
185
186
				<groupId>jakarta.xml.bind</groupId>
				<artifactId>jakarta.xml.bind-api</artifactId>
187
				<version>2.3.3</version>
188
			</dependency>
189
190
		</dependencies>
	</dependencyManagement>
Matthias Betz's avatar
Matthias Betz committed
191
192
193
194
	<dependencies>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
Matthias Betz's avatar
Matthias Betz committed
195
			<version>4.6.1</version>
Matthias Betz's avatar
Matthias Betz committed
196
197
198
			<scope>test</scope>
		</dependency>
	</dependencies>
199
200
201
202
203
204
205
	<modules>
		<module>CityDoctorModel</module>
		<module>CityDoctorValidation</module>
		<module>CityDoctorEdge</module>
		<module>CityDoctorCheckResult</module>
	</modules>
</project>