Merge branch 'main' of https://git.vps.francescomancuso.it/elisabetta/cryptoseals
All checks were successful
Deploy / trigger (push) Successful in 20s

This commit is contained in:
2026-03-27 22:47:52 +01:00
2 changed files with 18 additions and 21 deletions

View File

@@ -1,3 +1,4 @@
{
"maven.view": "hierarchical"
"maven.view": "hierarchical",
"java.configuration.updateBuildConfiguration": "interactive"
}

View File

@@ -6,7 +6,7 @@
<groupId>com.crypto</groupId>
<artifactId>cryptoseals</artifactId>
<version>1.0.0-SERVER</version>
<version>1</version>
<properties>
<maven.compiler.source>23</maven.compiler.source>
@@ -37,31 +37,27 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
<goal>single</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.crypto.Seal</mainClass>
</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>
<archive>
<manifest>
<mainClass>
com.crypto.Seal
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<attach>true</attach>
<finalName>app</finalName>
</configuration>
</execution>
</executions>