Java Spring Boot/Spring Security implementations of OAuth2 entities:
Using:
- OpenJDK 17
- Gradle 7.4
- Spring Boot 2.7.3
- Spring Security 5.7.3
- Windows 2019 ADFS as Authentication Server
./gradlew bootJar
./gradlew buildah [-PdockerVersion=1.0.1 ]
./gradlew bootJar
./gradlew docker [-PdockerVersion=1.0.1 ]
newtag=v1.0.1
git commit -a -m "changes for new tag $newtag" && git push
git tag $newtag && git push origin $newtag
todel=v1.0.1
# delete local tag, then remote
git tag -d $todel && git push origin :refs/tags/$todel
todel=v1.0.1
# delete release and remote tag
gh release delete $todel --cleanup-tag -y
# delete local tag
git tag -d $todel
