| Group ID: |
com.graphhopper |
| Artifact ID: |
graphhopper-web |
| Version: |
0.8.0 |
| Last modified: |
18.10.2016 09:06 |
| Packaging: |
jar |
| Name: |
GraphHopper Web |
| Description: |
Example on how to use GraphHopper in a web-based application |
|
|
| Size: |
44.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/graphhopper/graphhopper-web/0.8.0/graphhopper-web-0.8.0.jar |
| POM: |
Show
hide
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-web</artifactId>
<packaging>jar</packaging>
<version>0.8.0</version>
<name>GraphHopper Web</name>
<description>Example on how to use GraphHopper in a web-based application</description>
<parent>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-parent</artifactId>
<version>0.8.0</version>
</parent>
<properties>
<jetty.version>9.3.8.v20160314</jetty.version>
</properties>
<dependencies>
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-reader-osm</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.org.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.0</version>
</dependency>
<!-- necessary to use guice ('@Inject') in servlets -->
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
</dependency>
<!-- for integration tests of service -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- create a jar file too, so others can use it more easily -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<!-- this is an old version but 2.6 fails with java 9
see: https://stackoverflow.com/questions/36583118/is-maven-ready-for-jdk9-->
<version>2.4.1</version>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>2.4.4</version>
</dependency>
</dependencies>
<configuration>
<archive>
<manifest>
<mainClass>com.graphhopper.http.GHServer</mainClass>
</manifest>
</archive>
<descriptors>
<descriptor>src/main/assembly/jar.xml</descriptor>
<!-- this is defined to be executed afterwards -->
<descriptor>src/main/assembly/zip.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- bind to verify and not package to pass integration tests before creating assemblies -->
<phase>integration-test</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-web</artifactId>
<version>0.8.0</version>
</dependency>
|
| Gradle: |
com.graphhopper:graphhopper-web:0.8.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
graphhopper-reader-osm-${project.parent.version}.jar
in com/graphhopper/graphhopper-reader-osm/${project.parent.version}
-
[JAR]
guice-4.0.jar
in com/google/inject/guice/4.0
-
[JAR]
guice-servlet-4.0.jar
in com/google/inject/extensions/guice-servlet/4.0
-
[JAR]
jetty-server-${jetty.version}.jar
in org/eclipse/jetty/jetty-server/${jetty.version}
-
[JAR]
jetty-servlet-${jetty.version}.jar
in org/eclipse/jetty/jetty-servlet/${jetty.version}
-
[JAR]
jetty-servlets-${jetty.version}.jar
in org/eclipse/jetty/jetty-servlets/${jetty.version}
-
[JAR]
jetty-webapp-${jetty.version}.jar
in org/eclipse/jetty/jetty-webapp/${jetty.version}
-
[JAR]
json-${json.org.version}.jar
in org/json/json/${json.org.version}
-
[JAR]
log4j-${log4j.version}.jar
in log4j/log4j/${log4j.version}
-
[JAR]
slf4j-api-${slf4j.version}.jar
in org/slf4j/slf4j-api/${slf4j.version}
-
[JAR]
slf4j-log4j12-${slf4j.version}.jar
in org/slf4j/slf4j-log4j12/${slf4j.version}
|
| Dependency Graph: |
Show
Less
More
|