release scripts
This commit is contained in:
parent
ecd0222ffc
commit
053d69e690
3 changed files with 35 additions and 12 deletions
4
deploy.sh
Executable file
4
deploy.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
mvn clean jar:jar javadoc:jar source:jar gpg:sign deploy -Pcasser
|
||||
|
15
pom.xml
15
pom.xml
|
@ -358,6 +358,21 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
4
sign.sh
Executable file
4
sign.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
mvn clean jar:jar javadoc:jar source:jar gpg:sign install -Pcasser
|
||||
|
Loading…
Reference in a new issue