Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Latest commit

 

History

History
39 lines (28 loc) · 1.35 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.35 KB

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>