Checksums
|
MD5
|
9a99f7640a2461fa8e65603398cc1c9b
|
|
SHA1
|
f981ad7555cd8252ee15690f29eba8450e338f5c
|
|
SHA256
|
40b0e5f5c31162f17496e0bf95208f67e5e59ddb4dd14e4e755e36433bd091d5
|
|
SHA512
|
3fbb66fb8d9bccadadbc29e1cebfc04afcd27588deec635aca1348222bd17efd2e5016bdb5a90aa89f9f23ca16e8335b2e23cbfdd88d20f46b25ca41bb70ed32
|
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>server</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>io.javalin</groupId>
<artifactId>javalin</artifactId>
<version>7.2.2</version>
</dependency>
<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>