Skip to content

Commit

Permalink
update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoayyed authored Jan 24, 2024
1 parent 2899065 commit a8c521b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 21 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,33 +18,22 @@ on:
##########################################################################

jobs:
cancel-previous-runs:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
needs: cancel-previous-runs
steps:
- uses: actions/checkout@v2
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_CURRENT }}
distribution: 'temurin'
- name: Build
run: ./gradlew clean build
- name: Upload client build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: bootiful-cas-client
path: build/libs/bootiful-cas-client.jar
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ It could be used as a template to build more complex CAS-enabled Spring Boot app

## Getting Started

* Make sure you have Java 8 (at minimum) or Java 11 installed (it won't work on Java versions less than 8)
* Make sure you have (at minimum) Java 11 installed (it won't work on Java versions less than 8)

* Clone this repository

Expand All @@ -33,9 +33,7 @@ It could be used as a template to build more complex CAS-enabled Spring Boot app
key-store-password: changeit
```

> Note: you also might need to do the self-cert generation/importing dance into the JVM's trust store for this CAS client/server SSL handshake to

work properly.
> Note: you also might need to do the self-cert generation/importing dance into the JVM's trust store for this CAS client/server SSL handshake to work properly.

* From the command line run: `./gradlew clean bootRun`

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
springBootVersion = '3.0.4'
casClientVersion = '4.0.1'
springBootVersion = '3.0.13'
casClientVersion = '4.0.4'
jaxbApiVersion = '4.0.0'
jaxbRuntimeVersion = '4.0.1'
}
Expand All @@ -10,7 +10,7 @@ buildscript {
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:1.1.0")
classpath("io.spring.gradle:dependency-management-plugin:1.1.4")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit a8c521b

Please sign in to comment.