Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepared branch to test released version #60

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
// For the most recent version of the JWT-OPA library see:
// https://github.com/massenz/jwt-opa/releases
// This is likely to be the development, unreleased version.
jwtOpaVersion = "0.12.0"
jwtOpaVersion = "0.11.0"

awsSdkVersion = '2.17.102'
jsonpathVersion = "2.5.0"
Expand Down
7 changes: 2 additions & 5 deletions webapp-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ group 'com.alertavert'
version = "0.5.0"

repositories {
mavenLocal()
mavenCentral()
}

Expand All @@ -37,10 +36,8 @@ bootJar {

dependencies {
// ----- IMPORTANT -----
// If you modify the following line, make sure to also update the `build.gradle` file in the
// `test-released` branch, so that the CI tests can run against the released version.
// We depend here on the the local version here, so we can verify changes while developing:
implementation project (':jwt-opa')
// This is the only change in this branch, to use the published version of the library.
implementation "com.alertavert:jwt-opa:${jwtOpaVersion}"
// ----- SECTION ENDS -----

// For the @PostConstruct annotation
Expand Down
Loading