Checksums
|
MD5
|
a0735efcc85dfa6a0ee189bf068d7a66
|
|
SHA1
|
20164965d5ceaddea88603574425f9da1ceba1cc
|
|
SHA256
|
93f19413c126b6ee8e95748994c379d1858d84b3300cca055961e81d7c5704dc
|
|
SHA512
|
e22ab24fdff5957e49dc97b3b3bf7d14274a65515df6235ddb72a63c298491300f52f29ff0a8307e4c391019f77fc58330a75226b4a62e68d660ab2a28bb7cdc
|
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.0.0</version> <!-- x-release-please-version -->
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<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>