Skip to content

Commit

Permalink
chore(deps):springboot 3.3x/pact 4.5.x/gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Oct 7, 2024
1 parent 5326c5a commit 5a3ce11
Show file tree
Hide file tree
Showing 7 changed files with 197 additions and 145 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
# 'pactflow-example-bi-directional-provider-dotnet'
]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
java-version: '17'
- name: Test for ${{ matrix.pact_provider }}
run: make test
env:
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: docker pull pactfoundation/pact-cli:latest
- name: Can I deploy?
run: GIT_BRANCH=${GIT_REF:11} make can_i_deploy
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
needs: can-i-deploy
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GIT_REF:11} make deploy
Expand Down
2 changes: 1 addition & 1 deletion .java-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0
17.0
14 changes: 8 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
plugins {
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'org.springframework.boot' version '3.3.4'
id 'io.spring.dependency-management' version '1.1.6'
id 'java'
id "au.com.dius.pact" version "4.5.9"
id "au.com.dius.pact" version "4.5.13"
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
java {
sourceCompatibility = '17'
}

repositories {
mavenCentral()
Expand All @@ -21,8 +23,8 @@ configurations {

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.apache.httpcomponents:fluent-hc:4.5.5"
testImplementation 'au.com.dius.pact.consumer:junit5:4.5.9'
implementation "org.apache.httpcomponents:fluent-hc:4.5.14"
testImplementation 'au.com.dius.pact.consumer:junit5:4.5.13'

compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 5a3ce11

Please sign in to comment.