graphhopper-map-matching-web-1.0-pre42.pom
Export GraphHopper Map Matching in a web-based application
Checksums
MD5 | 1c4a1b11dc30e5481b343b7a49978efb |
SHA1 | 0a3654a9fe1f3ccec776428896e9431535a59486 |
SHA256 | f249d899de428bce3942ae090c83a7521a0f5a078106b0af5ca6291b78b0fdd2 |
SHA512 | d775aa94ab697938c79eda5ff86d0469cc8b570ef9583ffa36686e407352b2816afdb9de1d91df57738397fc106d323125d0023b010e5248bd3c6d5fbb27025f |
POM
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>graphhopper-map-matching-parent</artifactId> <groupId>com.graphhopper</groupId> <version>1.0-pre42</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.graphhopper</groupId> <artifactId>graphhopper-map-matching-web</artifactId> <name>GraphHopper Map Matching Web</name> <version>1.0-pre42</version> <description>Export GraphHopper Map Matching in a web-based application</description> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> <transformer> <mainClass>com.graphhopper.matching.http.MapMatchingApplication</mainClass> </transformer> </transformers> </configuration> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <version>2.0.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jersey-test-framework-core</artifactId> <groupId>org.glassfish.jersey.test-framework</groupId> </exclusion> <exclusion> <artifactId>jersey-test-framework-provider-inmemory</artifactId> <groupId>org.glassfish.jersey.test-framework.providers</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>