Checksums
|
MD5
|
2471f567a79613623d0f43f9cbc3cb84
|
|
SHA1
|
2f50c248bdf14bfc8fa2a03c6416f900e8375a5e
|
|
SHA256
|
eba268e199d8293bfe78da84a53fd5ce3dc03f08b1d06de564fa5a34b7f200bb
|
|
SHA512
|
0d42605625a3d4087b73df06fc5304a635a308224df6bd8da7d43e13628a24ed482a6e6d3b67704f3c1ebfe0086b4df36132629395bd6015196b12d518d610e6
|
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.1.0</version> <!-- x-release-please-version -->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>ile_de_france</artifactId>
<version>2.1.0</version> <!-- x-release-please-version -->
</dependency>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>core</artifactId>
<version>2.1.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.1</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>