Skip to content
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
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ subprojects{
options.addBooleanOption('html5', true)
}
}

// Mitigate CVE-2024-25710: Force commons-compress to 1.28.0
configurations.all {
resolutionStrategy {
force libs.commonsCompress
}
}
}

/**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
3 changes: 3 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ snakeYaml = "2.0"
#used for authz lib integration
rundeck = "4.17.6-20240402"
testcontainers = "1.21.3"
commonsCompress = "1.28.0"

[libraries]

Expand Down Expand Up @@ -50,6 +51,8 @@ rundeckAuthzYaml = { module = "org.rundeck:rundeck-authz-yaml", version.ref = "r
testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" }
testcontainersSpock = { module = "org.testcontainers:spock", version.ref = "testcontainers" }

commonsCompress = { module = "org.apache.commons:commons-compress", version.ref = "commonsCompress" }

[bundles]

retrofit = ["retrofitCore", "retrofitJackson", "retrofitJaxb", "okhttpLogging", "okhttpUrlconnection", "jaxb"]
Expand Down
Loading
Loading