Checksums
|
MD5
|
c5233bd94e1f4d987f483f6c40216004
|
|
SHA1
|
7459a2ea8a0695b9fc007ed05a99639cad747031
|
|
SHA256
|
05a9723ecb881f9cad09a9fb7a578d13175166bdb6b31f7e1cf8a1196765f5ed
|
|
SHA512
|
4c1b9dbaf6dd82403042fd0ef5c8cc69945ff80fdce0c3d0229ed2db6c255eae75133175ed4f6745999c32713015eaef6f07697859031b34a6d39be960b7cf1d
|
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>sao_paulo</artifactId>
<parent>
<groupId>org.eqasim</groupId>
<artifactId>eqasim</artifactId>
<version>2.2.0</version> <!-- x-release-please-version -->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.eqasim</groupId>
<artifactId>core</artifactId>
<version>2.2.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.2</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>