/vsp-playgrounds

The playgrounds of the TU Berlin MATSim team

Primary LanguageJava

MATSim VSP playgrounds

Build Status Packagecloud Repository

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

Use in external projects

To use vsp-playgrounds as dependencies in an external maven project, update the external project's pom.xml in the following way:

  1. 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>
  1. 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>