graphhopper-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.graphhopper</groupId> <artifactId>graphhopper-tools</artifactId> <version>10.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>graphhopper-tools</artifactId> <packaging>jar</packaging> <name>GraphHopper Tools</name> <parent> <groupId>com.graphhopper</groupId> <artifactId>graphhopper-parent</artifactId> <version>10.2</version> </parent> <properties> <assembly-phase>package</assembly-phase> </properties> <dependencies> <dependency> <groupId>com.graphhopper</groupId> <artifactId>graphhopper-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.graphhopper</groupId> <artifactId>graphhopper-web-api</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.graphhopper.external</groupId> <artifactId>jackson-datatype-jts</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>com.graphhopper.tools.Measurement</mainClass> </manifest> </archive> <!-- for standalone usage --> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>${assembly-phase}</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <!-- use -Ptools-jar to skip building the tools jar with dependencies --> <id>skip-tools-jar</id> <properties> <assembly-phase>none</assembly-phase> </properties> </profile> </profiles> </project>