Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update commons-io version #912

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies {
implementation localGroovy()
implementation ("io.openliberty.tools:liberty-ant-tasks:$libertyAntVersion")
implementation ("io.openliberty.tools:ci.common:$libertyCommonVersion")
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0'
provided group: 'com.ibm.websphere.appserver.spi', name: 'com.ibm.websphere.appserver.spi.kernel.embeddable', version: '1.0.0'
testImplementation 'junit:junit:4.13.1'
testImplementation gradleTestKit()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'war'
jar.enabled = false
description = 'WAR Module'
dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0', transitive:true
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0', transitive:true
testImplementation group: 'junit', name: 'junit', version:'4.13.1'
providedCompile group: 'javax', name: 'javaee-api', version:'7.0'
providedCompile project(':SampleEJB')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'war'
jar.enabled = false
description = 'WAR Module'
dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0', transitive:true
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0', transitive:true
testImplementation group: 'junit', name: 'junit', version:'4.13.1'
providedCompile group: 'javax', name: 'javaee-api', version:'7.0'
providedCompile project(':SampleEJB')
Expand Down
Loading