Skip to content
Open
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
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ repositories {
configurations {
pluginLibs

// Security: Force resolution of vulnerable dependencies
// Security: Force resolution of vulnerable dependencies (versions: gradle/libs.versions.toml)
all {
resolutionStrategy {
force 'org.apache.commons:commons-lang3:3.20.0'
force 'org.apache.commons:commons-compress:1.28.0'
force 'org.jetbrains.kotlin:kotlin-stdlib:2.1.0'
force libs.commons.lang3.get()
force libs.commons.compress.get()
force libs.kotlin.stdlib.get()
// Exclude old commons-lang to prevent conflicts
exclude group: 'commons-lang', module: 'commons-lang'
}
Expand Down Expand Up @@ -143,7 +143,7 @@ jar {
def libList = configurations.pluginLibs.collect{'lib/' + it.name}.join(' ')
attributes 'Rundeck-Plugin-Name' : 'Ansible Integration'
attributes 'Rundeck-Plugin-Description' : 'This plugin brings basic Ansible support to Rundeck. It imports hosts from Ansible\'s inventory, including a bunch of facts, and can run modules and playbooks. There is also a node executor and file copier for your project.'
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '3.0.1+'
attributes 'Rundeck-Plugin-Rundeck-Compatibility-Version': '6.0.0+'
attributes 'Rundeck-Plugin-Tags': 'java,node executor,resource model,workflow step,ansible'
attributes 'Rundeck-Plugin-License': 'MIT'
attributes 'Rundeck-Plugin-Source-Link': 'https://github.com/rundeck-plugins/ansible-plugin'
Expand Down
6 changes: 3 additions & 3 deletions functional-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ repositories {
group = 'com.github.rundeck-plugins'

configurations {
// Security: Force resolution of vulnerable dependencies
// Security: Force resolution (versions: root gradle/libs.versions.toml)
all {
resolutionStrategy {
force 'org.apache.commons:commons-compress:1.28.0'
force 'org.jetbrains.kotlin:kotlin-stdlib:2.1.0'
force libs.commons.compress.get()
force libs.kotlin.stdlib.get()
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# Security-fixed versions
commons-lang3 = "3.17.0"
commons-lang3 = "3.20.0"
commons-compress = "1.28.0"
kotlin-stdlib = "2.1.0"

Expand All @@ -12,13 +12,13 @@ groovy = "4.0.29"
lombok = "1.18.30"
spock = "2.4-groovy-4.0"
testcontainers = "1.19.0"
rd-api-client = "2.0.9"
rd-api-client = "2.0.10"
jsch = "0.1.55"
bytebuddy = "1.14.11"
objenesis = "3.4"

# Rundeck version
rundeck-core = "6.0.0-SNAPSHOT"
rundeck-core = "6.0.0-alpha1-20260407"
Comment thread
fdevans marked this conversation as resolved.

[libraries]
# Security overrides
Expand Down
2 changes: 0 additions & 2 deletions jitpack.yml

This file was deleted.

Loading