Release Enforcer Data V1.0.14

Description

Usual build process then update java-parent-project and enforce-parent to point to it

Environment

None

Activity

Rod Widdowson 
August 23, 2023 at 2:27 PM

All done. I can do a 15 if circumstances require it

Rod Widdowson 
August 23, 2023 at 2:26 PM

Updated java-parent-project and maven-enforcer/parent to latest version

Rod Widdowson 
August 23, 2023 at 2:22 PM

# for interactive passphrase entry (maybe not required for others) export GPG_TTY=$(tty) # somewhere to store a tmp maven repo export REPO=/tmp/rodsrepo export THE_VERSION=1.0.14 export NEW_VERSION=1.0.15-SNAPSHOT cd /tmp git clone git@git.shibboleth.net:java-mvn-enforcer-data cd java-mvn-enforcer-data git checkout main mvn -Dmaven.repo.local=$REPO -Prelease clean verify # mvn -Dmaven.repo.local=$REPO -DgenerateBackupPoms=false -DnewVersion=$THE_VERSION versions:set # Be sure there are not SNAPSHOT deps in any pom (from base dir). git status find . -name 'pom.xml' -exec grep SNAPSHOT {} \; # If the output contains SNAPSHOTs change to release mvn -Dmaven.repo.local=$REPO -Prelease clean verify git add -A git commit -m 'Update files to be tagged for release' git tag -s -m "Tag $THE_VERSION release" $THE_VERSION #mvn -Dmaven.repo.local=$REPO -DgenerateBackupPoms=false -DnewVersion=$NEW_VERSION versions:set vi pom.xml # Be sure there are SNAPSHOTs in the right places. find . -name 'pom.xml' -exec grep SNAPSHOT {} \; git add -A git commit -m 'Bump version after release' git checkout $THE_VERSION mvn -Dmaven.repo.local=$REPO -Prelease,sign clean verify ## commit the work ssh -L 1581:127.0.0.1:1581 -N build.shibboleth.net -f mvn -Dmaven.repo.local=$REPO -DskipTests -DdeployAtEnd=true -Prelease,sign deploy git checkout main git push origin main git push origin $THE_VERSION
Completed

Details

Assignee

Reporter

Created August 23, 2023 at 12:42 PM
Updated August 23, 2023 at 2:27 PM
Resolved August 23, 2023 at 2:27 PM