Checksums
MD5
|
6566c13b09887ba514bcc8b6296120ae
|
SHA1
|
5899b66cbb789ec5cfebbce0c30b859f76897b11
|
SHA256
|
92ca3ccd51ad82bf702193884de0a5de72d98c6f2ef0fe024c04315a9ef20d07
|
SHA512
|
8984d556706db913ecee1ac3df86e20fe96e3774030eaa08875f6c2c514ce03ee2526d277f17cfc07dd3f842d7f2303667af8cad80ecae6498b2b4722d359dc0
|
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.2.0</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>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<matsim.version>12.0</matsim.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>
</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>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</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>org.matsim.contrib</groupId>
<artifactId>discrete_mode_choice</artifactId>
<version>${matsim.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</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>