Checksums
MD5
|
672a772565d8cd8a8a2adb51cfbc12af
|
SHA1
|
2047d2496a677bb84afa2c6a270b93333b098573
|
SHA256
|
0be221436b8b0d6a0ea21ef38d0e4cabd8ce6ceab4780a08e6d4aca0defaead0
|
SHA512
|
5a6c6035c593c1ebd785b5a1ad97eb0c20da3fde655f75bfbf4fc3036b7437a7a3c117d667e305e55a467535b7185f192d012b80de99906b34bf9c60a1b4602d
|
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>
<artifactId>examples</artifactId>
<parent>
<groupId>org.eqasim</groupId>
<artifactId>eqasim</artifactId>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>vdf</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.matsim.contrib</groupId>
<artifactId>drt</artifactId>
<version>${matsim.version}</version>
</dependency>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>ile_de_france</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>core</artifactId>
<version>1.5.0</version>
</dependency>
</dependencies>
<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>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>