1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00
graphhopper-jsprit/docs/before-1.7/Add-latest-release-to-your-pom.md
2016-09-01 12:17:08 +02:00

1.2 KiB

To use all modules (without jsprit-examples), make sure you added the following lines to your pom. Just copy and paste it into your pom.

<dependencies> <!-- add this, if you don't have any dependency definitions yet -->
  <dependency>
    <groupId>jsprit</groupId>
    <artifactId>jsprit-core</artifactId>
    <version>1.6.2</version>
  </dependency>
  <dependency>
    <groupId>jsprit</groupId>
    <artifactId>jsprit-analysis</artifactId>
    <version>1.6.2</version>
  </dependency>
  <dependency>
    <groupId>jsprit</groupId>
    <artifactId>jsprit-instances</artifactId>
    <version>1.6.2</version>
  </dependency>
</dependencies> <!-- add this, if you don't have any dependency definitions yet -->

<repositories> <!-- add this, if you don't have any repository definitions yet -->
  <repository>
    <id>jsprit-releases</id>
    <url>https://github.com/jsprit/mvn-rep/raw/master/releases</url>
  </repository>
</repositories> <!-- add this, if you don't have any repository definitions yet -->