baseline_scenario-0.0.1-20180916.184815-36.pom
Checksums
MD5
|
b3d999d9cf80c8d8c52484d25dfe27ca
|
SHA1
|
477b55fed27349d286ee62ffaaedab77e6adc6ab
|
SHA256
|
9ad894ecceb57b81996be423c8ad9ca9315a4ea31a269f4a0b97523860d3b9c9
|
SHA512
|
cc334c3851693fa4058ee956ae2156273d10c80c8bea701a898694ccbca4474b5163681f0d4092cdd022920c07d77e29dab4fa7b3d059632eee2d9c03d41edab
|
POM
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.ethz.matsim</groupId>
<artifactId>baseline_scenario</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<repositories>
<!-- Needed for geotools in matsim main -->
<repository>
<id>osgeo</id>
<name>Geotools repository</name>
<url>http://download.osgeo.org/webdav/geotools</url>
</repository>
<repository>
<id>matsim-eth</id>
<url>http://dl.bintray.com/matsim-eth/matsim</url>
</repository>
<repository>
<id>matsim-eth-packagecloud</id>
<url>https://packagecloud.io/eth-ivt/matsim/maven2</url>
</repository>
<repository>
<id>eth-playgrounds-packagecloud</id>
<url>https://packagecloud.io/eth-ivt/playgrounds/maven2</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>packagecloud-eth-ivt</id>
<url>packagecloud+https://packagecloud.io/eth-ivt/matsim</url>
</snapshotRepository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>io.packagecloud.maven.wagon</groupId>
<artifactId>maven-packagecloud-wagon</artifactId>
<version>0.0.6</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>standalone</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>0.10.0-nov17</version>
</dependency>
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>dvrp</artifactId>
<version>0.10.0-nov17</version>
</dependency>
<!-- TODO: Remove this dependency, and drag routing stuff in from astra -->
<dependency>
<groupId>ch.ethz.matsim</groupId>
<artifactId>mode_choice</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ch.sbb</groupId>
<artifactId>matsim-sbb-extension</artifactId>
<version>0.10.0-nov17-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ch.ethz.matsim.playgrounds</groupId>
<artifactId>sebhoerl</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>0.10.0-nov17</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>