We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 953e8b8 commit 50e90e8Copy full SHA for 50e90e8
pom.xml
@@ -80,6 +80,12 @@
80
</execution>
81
</executions>
82
</plugin>
83
+
84
+ <plugin>
85
+ <groupId>org.apache.maven.plugins</groupId>
86
+ <artifactId>maven-javadoc-plugin</artifactId>
87
+ <version>3.1.1</version>
88
+ </plugin>
89
</plugins>
90
</build>
91
release-perform
@@ -0,0 +1,8 @@
1
+#!/usr/bin/bash
2
3
+if [[ ! -f release.properties ]]; then
4
+ echo "Need to prepare release first."
5
+ exit 1
6
+fi
7
+mvn release:perform
8
0 commit comments