mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
create and add docs
This commit is contained in:
parent
bac847d39b
commit
7212521807
24 changed files with 1223 additions and 17 deletions
27
docs/before-1.7/Define-mvn-dependency-in-your-pom.md
Normal file
27
docs/before-1.7/Define-mvn-dependency-in-your-pom.md
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
To use all modules (without jsprit-examples), make sure you added the following lines to your pom.
|
||||
|
||||
<pre><code><dependencies> <!-- add this, if you don't have any dependency definitions yet -->
|
||||
<dependency>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit-core</artifactId>
|
||||
<version>0.0.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit-analysis</artifactId>
|
||||
<version>0.0.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jsprit</groupId>
|
||||
<artifactId>jsprit-instances</artifactId>
|
||||
<version>0.0.3</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 -->
|
||||
</code></pre>
|
||||
Loading…
Add table
Add a link
Reference in a new issue