Skip to content

Lildtz/spring-boot-security5-oauth2-oidc

 
 

Repository files navigation

spring-boot-security5-oauth2-oidc

blog: https://fabianlee.org/2022/08/25/java-spring-security-oauth2-oidc-protecting-client-app-and-resource-server/

Java Spring Boot/Spring Security implementations of OAuth2 entities:

Using:

OAuth2 Entities

Root project, create OCI images for subprojects with buildah

./gradlew bootJar
./gradlew buildah [-PdockerVersion=1.0.1 ]

Root project, create OCI images for subprojects with docker

./gradlew bootJar
./gradlew docker [-PdockerVersion=1.0.1 ]

Creating tag

newtag=v1.0.1
git commit -a -m "changes for new tag $newtag" && git push
git tag $newtag && git push origin $newtag

Deleting tag

todel=v1.0.1

# delete local tag, then remote
git tag -d $todel && git push origin :refs/tags/$todel

Deleting release

todel=v1.0.1

# delete release and remote tag
gh release delete $todel --cleanup-tag -y

# delete local tag
git tag -d $todel

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Java 56.1%
  • HTML 26.9%
  • Shell 12.8%
  • Dockerfile 4.2%