Checksums
MD5
|
b9aa03785771d263e25adbd21d261731
|
SHA1
|
c574cde89e0029da4cc3e85dc82d31d1c49fc28d
|
SHA256
|
ebafbb06054cd06cfff757ad6e70a50d1c24d7e4d86e399685d3e5cae03c4782
|
SHA512
|
b96782551bcefdfa877cbdcc70dc08c59b4a4cf3166bf88537cc4ca4d1771e8a6e34e08ff087462be0322c40a5b8eb4adb408a4b7f4dfcbbc4db059d336c62d2
|
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.3.1</version>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>switzerland</module>
<module>ile_de_france</module>
<module>sao_paulo</module>
<module>examples</module>
<module>san_francisco</module>
<module>los_angeles</module>
</modules>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<matsim.version>13.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>https://repo.matsim.org/repository/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.7</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>