Skip to content

Commit

Permalink
Merge pull request #103 from CleverTap/bump-okhttp3
Browse files Browse the repository at this point in the history
Bump version of Okhttp3 to 5.0.0
  • Loading branch information
smghacker authored Aug 6, 2024
2 parents dd69b83 + d30754f commit c4c2afe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up JDK 1.8
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 17

- name: Cache local Maven repository
uses: actions/cache@v2
Expand All @@ -41,10 +41,10 @@ jobs:
${{ runner.os }}-sonar-
- name: Run tests
run: mvn -B -P jacoco verify
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Report to SonarCloud
run: mvn -B org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up JDK 1.8
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 17

- name: Cache local Maven repository
uses: actions/cache@v2
Expand All @@ -36,4 +36,4 @@ jobs:
--file pom.xml -s release/m2-settings.xml verify deploy
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.clevertap.apns</groupId>
<artifactId>apns-http2</artifactId>
<version>2.1.0</version>
<version>3.0.0</version>

<name>apns-http2</name>
<description>A library for communicating with the Apple Push Gateway in HTTP/2.</description>
Expand All @@ -19,7 +19,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<okhttp.version>4.8.1</okhttp.version>
<okhttp.version>5.0.0-alpha.14</okhttp.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit c4c2afe

Please sign in to comment.