Skip to content

Commit

Permalink
Merge pull request #2 from OCTRI/AUTHLIB-159
Browse files Browse the repository at this point in the history
AUTHLIB-159: Fixing dependency fetch failure
  • Loading branch information
vijetmuley3 authored Oct 18, 2024
2 parents 410bcd3 + 17d743e commit 945aa8a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Java build environmant
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
echo ${{ steps.latestrelease.outputs.releasetag }}
- name: tagcheckout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ steps.latestrelease.outputs.releasetag }}

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down
7 changes: 7 additions & 0 deletions authentication_lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
<java.version>17</java.version>
</properties>

<repositories>
<repository>
<id>shibboleth-releases</id>
<url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 945aa8a

Please sign in to comment.