baseline_scenario-0.0.1-20180216.131745-13.pom
Checksums
MD5
|
6f8dd5a43fab74c48638ef3b8aeafa61
|
SHA1
|
451728435843b7ff24d7996f462b83b0cfa42e7c
|
SHA256
|
f11cfe268c02623a3e40ea41c0d520e28cddc5d2cb78b5760ae67a84d119a27e
|
SHA512
|
161bdaa53c8e258be43b6ae1667a10d5cd994cb8fd7e8107350969e136452e7cdbda2adc5ac720adc4ce41275f28bbffe3c9f0dc428a4d5d2eff895337544aa4
|
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>zip</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<descriptor>src/main/assembly/assembly-release.xml</descriptor>
</configuration>
<executions>
<execution>
<id>create-archive</id>
<phase>package</phase>
<goals>
<goal>single</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>