<?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>de.hft.stuttgart</groupId> <artifactId>CityDoctorParent</artifactId> <version>3.16.0</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>CityDoctorHealerGenetic</artifactId> <dependencies> <dependency> <groupId>de.hft.stuttgart</groupId> <artifactId>CityDoctorHealerGUI</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </project>