map-matching-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>map-matching-parent</artifactId>
<version>0.7.0</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>
<groupId>com.graphhopper</groupId>
<artifactId>map-matching-parent</artifactId>
<name>GraphHopper Map Matching Parent Project</name>
<version>0.7.0</version>
<packaging>pom</packaging>
<url>https://graphhopper.com</url>
<inceptionYear>2012</inceptionYear>
<description>
Super pom of the GraphHopper Map Matching component
</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
<relativePath></relativePath>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<slf4j.version>1.7.21</slf4j.version>
<log4j.version>1.2.17</log4j.version>
<json.org.version>20160212</json.org.version>
</properties>
<scm>
<connection>scm:git:git@github.com:graphhopper/map-matching.git</connection>
<developerConnection>scm:git:git@github.com:graphhopper/map-matching.git</developerConnection>
<url>git@github.com:graphhopper/map-matching.git</url>
</scm>
<developers>
<developer>
<id>karussell</id>
<name>Peter Karich</name>
<email>my.name@graphhopper.com</email>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>GraphHopper</name>
<subscribe>https://discuss.graphhopper.com/</subscribe>
<archive>https://discuss.graphhopper.com/</archive>
</mailingList>
</mailingLists>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/graphhopper/map-matching/issues</url>
</issueManagement>
<modules>
<module>matching-core</module>
<module>matching-web</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<!--
<compilerArgument>-Xlint:unchecked</compilerArgument>
-->
<fork>true</fork>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- to run single tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<argLine>-Xmx100m -Xms100m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- mvn deploy -DperformRelease=true -->
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>include-android</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>android/app</module>
</modules>
</profile>
</profiles>
</project>