<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.13.0</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> </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> </configuration> </plugin> </plugins> </pluginManagement> </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> <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-swing --> <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> <!-- https://mvnrepository.com/artifact/net.sf.saxon/Saxon-HE --> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> <version>11.3</version> </dependency> <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core --> <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.0.0-rc.4</version> </dependency> <dependency> <groupId>org.citygml4j</groupId> <artifactId>citygml4j-xml</artifactId> <version>3.0.0-rc.4</version> </dependency> <dependency> <groupId>de.hft.stuttgart</groupId> <artifactId>citygml4j-quality-ade</artifactId> <version>3.2.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop --> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>fop</artifactId> <version>2.7</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jdom/jdom2 --> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.1</version> </dependency> <!-- https://mvnrepository.com/artifact/junit/junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</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>${log4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.30</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>${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> </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> </modules> </project>