1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

fixed broken link and correct syntax with md

This commit is contained in:
jsroyal 2017-06-04 00:03:30 +05:30
parent 29fbdd6e66
commit 32aa164afc
5 changed files with 56 additions and 14 deletions

View file

@ -1,7 +1,7 @@
####Requirements
#### Requirements
jsprit requires Java 1.7.0 or later.
####Modules
#### Modules
jsprit is a multi-module project and consists of:
- jsprit-core
- jsprit-analysis
@ -9,7 +9,7 @@ jsprit is a multi-module project and consists of:
- jsprit-examples
- jsprit-io
####Maven way
#### Maven way
If you want to use the latest release of jsprit-core, add the following lines to your pom:
<pre><code>&lt;dependency&gt;
@ -21,7 +21,7 @@ If you want to use the latest release of jsprit-core, add the following lines to
Find the latest versions here: [mvn repository](https://mvnrepository.com/artifact/com.graphhopper/jsprit-core).
####Build yourself
#### Build yourself
If you want to build the master branch yourself, do this:
```
@ -30,7 +30,7 @@ cd jsprit
mvn clean install
```
####If you do not have an IDE and you want to use Maven
#### If you do not have an IDE and you want to use Maven
the following documentation is recommended:
@ -39,6 +39,7 @@ the following documentation is recommended:
Here you learn to setup the Java environment and an Integrated Development Environment (IDE). In the subsection <em>Adding Jars to your Project</em> you learn to integrate external libraries in your project. Just copy/paste the above jsprit releases/snapshots to your pom.xml instead of the GeoTools-artifacts.
#### If you do not want Maven
to manage your dependencies, go to [maven central](https://search.maven.org/), search for jsprit and download the latest binaries to put them into your classpath.
Go ahead and show me a [simple example](Simple-Example.md) of how to setup and solve a vehicle routing problem.