Sign
This commit is contained in:
parent
09e10b81bf
commit
87aaadbbd4
3 changed files with 42 additions and 6 deletions
4
.idea/compiler.xml
generated
4
.idea/compiler.xml
generated
|
|
@ -6,8 +6,10 @@
|
||||||
<sourceOutputDir name="target/generated-sources/annotations" />
|
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||||
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||||
<outputRelativeToContentRoot value="true" />
|
<outputRelativeToContentRoot value="true" />
|
||||||
<module name="jarupdater" />
|
|
||||||
</profile>
|
</profile>
|
||||||
</annotationProcessing>
|
</annotationProcessing>
|
||||||
|
<bytecodeTargetLevel>
|
||||||
|
<module name="spigot" target="11" />
|
||||||
|
</bytecodeTargetLevel>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
7
.idea/encodings.xml
generated
Normal file
7
.idea/encodings.xml
generated
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding">
|
||||||
|
<file url="file://$PROJECT_DIR$/spigot/src/main/java" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/spigot/src/main/resources" charset="UTF-8" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
37
pom.xml
37
pom.xml
|
|
@ -5,9 +5,12 @@
|
||||||
<version>0.2.1-SNAPSHOT</version>
|
<version>0.2.1-SNAPSHOT</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>11</maven.compiler.source>
|
<maven.compiler.release>11</maven.compiler.release>
|
||||||
<maven.compiler.target>11</maven.compiler.target>
|
|
||||||
</properties>
|
<jarsigner.keystore>${project.basedir}/testkeystore.jks</jarsigner.keystore>
|
||||||
|
<jarsigner.alias>testkey</jarsigner.alias>
|
||||||
|
<jarsigner.storepass>123456</jarsigner.storepass>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
|
|
@ -47,6 +50,31 @@
|
||||||
<artifactId>maven-release-plugin</artifactId>
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
<version>3.1.1</version>
|
<version>3.1.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
||||||
|
<version>3.1.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign</id>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>verify</id>
|
||||||
|
<goals>
|
||||||
|
<goal>verify</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<keystore>${jarsigner.keystore}</keystore>
|
||||||
|
<alias>${jarsigner.alias}</alias>
|
||||||
|
<storepass>${jarsigner.storepass}</storepass>
|
||||||
|
<tsa>http://time.certum.pl</tsa>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
@ -63,6 +91,5 @@
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<developerConnection>scm:git:git@git.m724.eu:Minecon724/jarupdater.git</developerConnection>
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/jarupdater.git</developerConnection>
|
||||||
<tag>jarupdater-0.1.7</tag>
|
</scm>
|
||||||
</scm>
|
|
||||||
</project>
|
</project>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue