This repository contains MATSim related code of the VSP group at TU Berlin.
CI is run on travis and (snapshot) jars are deployed to packagecloud
Please note, that this code is not designated stable.
For the main MATSim project, see https://github.com/matsim-org
To use vsp-playgrounds as dependencies in an external maven project, update the external project's pom.xml
in the following way:
- Add the vsp-playgrounds packagecloud repository in the
repositories
section:
<repositories>
<repository>
<id>matsim-vsp-vsp-playgrounds</id>
<url>https://packagecloud.io/matsim-vsp/vsp-playgrounds/maven2</url>
</repository>
</repositories>
- Add a dependency for each used playground in the
dependencies
section:
<dependencies>
<dependency>
<groupId>org.matsim.vsp.vsp-playgrounds</groupId>
<artifactId>$playground_name$</artifactId>
<version>0.11.0-SNAPSHOT</version>
</dependency>
</dependencies>