Checksums
MD5
|
37196186945a8e2a478a29c776864a51
|
SHA1
|
0f21eb4d4a51b18aed6093f42901fe8beeab6f60
|
SHA256
|
6dcc455e64c42b1ac051a2d3f4a890a07b378ccec7c7a42045739a708e3cb19e
|
SHA512
|
f4f4f745dbd08f2a867e0f187829f412a7ff14bcd05e4dbb3274f6ec39577d7b82cb7ea0e3a10908af9d6456121282334a0f7ea52ec4950281766ee849aa62f3
|
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>2.0.0</version> <!-- x-release-please-version -->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>ile_de_france</artifactId>
<version>2.0.0</version> <!-- x-release-please-version -->
</dependency>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>core</artifactId>
<version>2.0.0</version> <!-- x-release-please-version -->
</dependency>
</dependencies>
<profiles>
<profile>
<id>standalone</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.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>