Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/settings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<localRepository>/var/lib/jenkins/.m2/repository</localRepository>
<pluginGroups>
<pluginGroup>org.apache.maven.plugins</pluginGroup>
<pluginGroup>org.codehaus.mojo</pluginGroup>
Expand All @@ -23,7 +22,8 @@
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase>${env.KEYPASS}</gpg.passphrase>
<!-- this env variable is defined in .buildkite/hooks/pre-command -->
<gpg.passphrase>${env.KEYPASS_SECRET}</gpg.passphrase>
</properties>
</profile>
</profiles>
Expand Down
30 changes: 0 additions & 30 deletions .ci/snapshot-settings.xml

This file was deleted.

4 changes: 2 additions & 2 deletions .ci/snapshot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ java -version
set +x
echo "--- Deploy the snapshot :package:"
if [[ "$dry_run" == "true" ]] ; then
echo './mvnw -V -s .ci/snapshot-settings.xml -Pgpg clean deploy -DskipTests --batch-mode'
echo './mvnw -V -s .ci/settings.xml -Pgpg clean deploy -DskipTests --batch-mode'
else
./mvnw -V -s .ci/snapshot-settings.xml -Pgpg clean deploy -DskipTests --batch-mode | tee snapshot.txt
./mvnw -V -s .ci/settings.xml -Pgpg clean deploy -DskipTests --batch-mode | tee snapshot.txt
fi