Compare commits
3 Commits
a3af1a0a17
...
e17dda0cc6
| Author | SHA1 | Date | |
|---|---|---|---|
|
e17dda0cc6
|
|||
|
941c83af81
|
|||
|
b802c2cb9a
|
@@ -1,4 +1,4 @@
|
|||||||
FROM eclipse-temurin:17-jdk-alpine
|
FROM eclipse-temurin:17-jre
|
||||||
LABEL authors="FatttSnake"
|
LABEL authors="FatttSnake"
|
||||||
|
|
||||||
VOLUME /data
|
VOLUME /data
|
||||||
|
|||||||
32
pom.xml
32
pom.xml
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<groupId>top.fatweb.oxygen</groupId>
|
<groupId>top.fatweb.oxygen</groupId>
|
||||||
<artifactId>api</artifactId>
|
<artifactId>api</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.1-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>oxygen-api</name>
|
<name>oxygen-api</name>
|
||||||
<description>API of Oxygen Toolbox</description>
|
<description>API of Oxygen Toolbox</description>
|
||||||
@@ -139,6 +139,36 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>net.ju-n.maven.plugins</groupId>
|
||||||
|
<artifactId>checksum-maven-plugin</artifactId>
|
||||||
|
<version>1.4</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>checksum-maven-plugin-files</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>files</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<fileSets>
|
||||||
|
<fileSet>
|
||||||
|
<directory>${project.build.directory}</directory>
|
||||||
|
<includes>
|
||||||
|
<include>*.jar</include>
|
||||||
|
</includes>
|
||||||
|
</fileSet>
|
||||||
|
</fileSets>
|
||||||
|
<algorithms>
|
||||||
|
<algorithm>MD5</algorithm>
|
||||||
|
<algorithm>SHA-1</algorithm>
|
||||||
|
<algorithm>SHA-256</algorithm>
|
||||||
|
<algorithm>SHA-512</algorithm>
|
||||||
|
</algorithms>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user