Skip to content

Commit

Permalink
Merge pull request #29 from mpmadhavig/master
Browse files Browse the repository at this point in the history
Replace okio with okio-jvm
  • Loading branch information
mpmadhavig authored Dec 12, 2024
2 parents 7c6a62b + 56cf72c commit 2765e68
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build the project on pull requests with tests
# Uses:
# OS: ubuntu-lates
# JDK: Adopt JDK 8
# JDK: Adopt JDK 17

name: PR Builder

Expand All @@ -19,10 +19,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Adopt JDK 8
- name: Set up Adopt JDK 17
uses: actions/setup-java@v2
with:
java-version: "8"
java-version: "17"
distribution: "adopt"
- name: Cache local Maven repository
id: cache-maven-m2
Expand Down
13 changes: 9 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<artifactId>org.wso2.carbon.extension.identity.scim2.client</artifactId>
<packaging>bundle</packaging>
<name>identity-client-scim2</name>
<version>2.0.3-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>

<licenses>
<license>
Expand Down Expand Up @@ -87,13 +87,18 @@
<dependency>
<groupId>org.wso2.charon</groupId>
<artifactId>org.wso2.charon3.core</artifactId>
<exclusions>
<exclusion>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
</exclusion>
</exclusions>
<version>${charon.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<version>3.6.0</version>
<scope>provided</scope>
<artifactId>okio-jvm</artifactId>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>commons-lang.wso2</groupId>
Expand Down

0 comments on commit 2765e68

Please sign in to comment.