The playgrounds of the University of Pretoria's MATSim team. Unless changed explicitly
in the specific playground's pom.xml
file, the playgrounds depend on the latest stable
MATSim release, currently 0.10.0
. Continuous integration (CI) is done on
Travis-CI and (snapshot) jars are
deployed to packagecloud.
To use up-playgrounds as dependencies in an external maven project, update the external
project's pom.xml
in the following way:
- Add the up-playgrounds packagecloud repository in the
repositories
section:
<repositories>
<repository>
<id>matsim-up-up-playgrounds</id>
<url>https://packagecloud.io/matsim-up/up-playgrounds/maven2</url>
</repository>
</repositories>
- Add a dependency for each used playground in the
dependencies
section:
<dependencies>
<dependency>
<groupId>org.matsim.up.up-playgrounds</groupId>
<artifactId>$playground_name$</artifactId>
<version>0.10.0-SNAPSHOT</version>
</dependency>
</dependencies>