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