Skip to content

Commit

Permalink
bump used libs
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Feb 11, 2024
1 parent 15112c3 commit 455a724
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 15
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 15
java-version: 21
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
Expand All @@ -46,5 +46,5 @@ jobs:
run: |
chmod +x gradlew
java -version
./gradlew build release sonarqube -PbuildNumber=SNAPSHOT
./gradlew build release sonar -PbuildNumber=SNAPSHOT
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ plugins {

ext {
nettyVersion = '4.1.87.Final'
jettyVersion = '9.4.50.v20221201'
jUnitVersion = '5.9.2'
jettyVersion = '9.4.53.v20231009'
jUnitVersion = '5.9.3'
mockitoCoreVersion = '4.6.1'
orgSfl4jVersion = '2.0.6'
orgSfl4jVersion = '2.0.9'
logbackVersion = '1.4.5'
googleGuavaApi = 'com.google.guava:guava:31.1-jre'
googleGuavaApi = 'com.google.guava:guava:32.1.3-jre'
componentName = 'wilma'
javaxServletApi = 'javax.servlet:javax.servlet-api:3.1.0'
javaxAnnotationApi = 'javax.annotation:javax.annotation-api:1.3.2'
orgJsonApi = 'org.json:json:20220320'
orgSpringframework='5.3.25' //6.0.x requires jdk17
orgSpringframework='5.3.31' //6.0.x requires jdk17
FastInfoSetVersion = '2.1.0'
}

Expand Down
2 changes: 1 addition & 1 deletion wilma-functionaltest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
implementation group: 'org.mockito', name: 'mockito-core', version: "${mockitoCoreVersion}"
implementation group: 'at.bestsolution.efxclipse.eclipse', name: 'org.apache.commons.httpclient', version: '3.1.0'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation 'commons-io:commons-io:2.4'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
implementation 'com.sun.xml.fastinfoset:FastInfoset:2.1.0'
implementation project(':wilma-service-api')
Expand Down

0 comments on commit 455a724

Please sign in to comment.