Checksums
MD5
|
c13c8bebb8106b5271f2609ec1e8aa2f
|
SHA1
|
82aba3634e97efe912acb38734cb7f6e4fb9237c
|
SHA256
|
70ea4562f26a895f3e9c74d455196ad1a6933a141ce63a5260e26768b1000b1c
|
SHA512
|
24ee896841a3d15c9228db8a8e14458291d67de940086f2953c8e37fc12d585bd294aae5c1d304091d95c8dd6c144dcb8e01370382eb1aa1a4c6d417c63de6f2
|
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>switzerland</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" />
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Implementation-Vendor>Eqasim</Implementation-Vendor>
<Implementation-Version>
${parent.groupId}</Implementation-Version>
</manifestEntries>
</transformer>
</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>