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 5600c73 commit 7e52ba1Copy full SHA for 7e52ba1
pom.xml
@@ -5,7 +5,7 @@
5
<parent>
6
<groupId>com.cosium.maven_oss</groupId>
7
<artifactId>maven-oss</artifactId>
8
- <version>1.5</version>
+ <version>1.6</version>
9
</parent>
10
11
<name>HAL Mock MVC Parent</name>
release.sh
@@ -1,2 +1,7 @@
1
#!/usr/bin/env bash
2
+env | grep MAVEN_GPG_PASSPHRASE > /dev/null
3
+if [ $? -eq 1 ]; then
4
+ echo "Environment variable 'MAVEN_GPG_PASSPHRASE' is missing. Set it to empty if there is no passphrase."
+ exit 1
+fi
./mvnw --batch-mode clean release:prepare release:perform && git push && git push --tags
0 commit comments