pom.xml 5.38 KB
Newer Older
1
2
3
4
5
6
<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.hft.stuttgart</groupId>
	<artifactId>CityDoctorParent</artifactId>
7
	<version>3.8.0-SNAPSHOT</version>
8
9
10
11
12
13
14
	<packaging>pom</packaging>
	<name>CityDoctorParent</name>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<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
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
	</properties>

	<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>
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorValidation</artifactId>
				<version>${revision}</version>
			</dependency>
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>CityDoctorCheckResult</artifactId>
				<version>${revision}</version>
			</dependency>
			<!-- https://mvnrepository.com/artifact/net.sf.saxon/Saxon-HE -->
			<dependency>
				<groupId>net.sf.saxon</groupId>
				<artifactId>Saxon-HE</artifactId>
				<version>9.9.1-6</version>
			</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>
66
				<version>2.11.2</version>
67
68
69
70
71
72
73
			</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>
74
75
76
77
78
			<dependency>
				<groupId>de.hft.stuttgart</groupId>
				<artifactId>citygml4j-quality-ade</artifactId>
				<version>0.1.0</version>
			</dependency>
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
148
149
150
151
152
153
154
			<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
			<dependency>
				<groupId>org.apache.xmlgraphics</groupId>
				<artifactId>fop</artifactId>
				<version>2.2</version>
			</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>
				<version>2.11.2</version>
			</dependency>
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-core</artifactId>
				<version>2.11.2</version>
			</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>
			<!-- https://mvnrepository.com/artifact/org.osgeo/proj4j -->
			<dependency>
				<groupId>org.osgeo</groupId>
				<artifactId>proj4j</artifactId>
				<version>0.1.0</version>
			</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>
				<version>1.16.1</version>
			</dependency>
			<dependency>
				<groupId>com.sun.xml.bind</groupId>
155
				<artifactId>jaxb-impl</artifactId>
156
				<version>2.3.3</version>
157
158
			</dependency>
			<dependency>
159
160
				<groupId>jakarta.xml.bind</groupId>
				<artifactId>jakarta.xml.bind-api</artifactId>
161
				<version>2.3.3</version>
162
			</dependency>
163
164
165
166
167
168
169
170
171
		</dependencies>
	</dependencyManagement>
	<modules>
		<module>CityDoctorModel</module>
		<module>CityDoctorValidation</module>
		<module>CityDoctorEdge</module>
		<module>CityDoctorCheckResult</module>
	</modules>
</project>