Checksums
MD5
|
093a042dd0ef9cef690f0840634feb5f
|
SHA1
|
f114dfedafef919cfaa9f61dc0c84d3a87ad9624
|
SHA256
|
ef301d2533d908680f0169bb8a5e94e156d494710d064aa07c6736e5730fe23c
|
SHA512
|
b0e2ab12c8b6a3183691189b455b7511b6a9c50fc6ac377750009d9932e7e28416c26a24aa6e526ba83d50ec3bc237f17a6833e54c5f7251178f923e7bc40242
|
POM
<?xml version="1.0" encoding="UTF-8"?>
<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>org.eqasim</groupId>
<artifactId>eqasim</artifactId>
<version>1.0.6</version>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>switzerland</module>
<module>ile_de_france</module>
<module>sao_paulo</module>
<module>automated_vehicles</module>
<module>examples</module>
<module>san_francisco</module>
<module>los_angeles</module>
<module>auckland</module>
</modules>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<matsim.version>11.0</matsim.version>
<swiss_rail.version>11.2</swiss_rail.version>
</properties>
<distributionManagement>
<repository>
<id>packagecloud-eqasim</id>
<url>packagecloud+https://packagecloud.io/eth-ivt/eqasim</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>osgeo</id>
<name>Geotools repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
</repository>
<repository>
<id>matsim</id>
<url>http://dl.bintray.com/matsim/matsim</url>
</repository>
<repository>
<id>matsim-eth</id>
<url>http://dl.bintray.com/matsim-eth/matsim</url>
</repository>
<repository>
<id>swiss-rail</id>
<url>https://schweizerischebundesbahnen.bintray.com/simba.mvn</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
<artifactId>matsim</artifactId>
<version>${matsim.version}</version>
</dependency>
<dependency>
<groupId>ch.sbb</groupId>
<artifactId>matsim-sbb-extensions</artifactId>
<version>${swiss_rail.version}</version>
</dependency>
<dependency>
<groupId>ch.ethz.matsim</groupId>
<artifactId>discrete_mode_choice</artifactId>
<version>1.0.8-matsim11</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>io.packagecloud.maven.wagon</groupId>
<artifactId>maven-packagecloud-wagon</artifactId>
<version>0.0.6</version>
</extension>
</extensions>
</build>
</project>