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
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
plugins{
//defines scmVersion from git tags
id 'pl.allegro.tech.build.axion-release' version '1.18.17'
id 'java'
id 'groovy'
id 'idea'
alias(libs.plugins.axionRelease)
}
apply plugin: 'idea'
ext.pluginClassNames = 'org.rundeck.plugins.nodes.icon.IconNodeEnhancer,org.rundeck.plugins.nodes.attributes.AttributeNodeEnhancer'
Expand Down Expand Up @@ -39,14 +41,11 @@ jar {
}
}
dependencies {
// Use the latest
// Groovy version for building this library
// compile "com.squareup.okhttp3:okhttp:3.6.0"
implementation 'org.rundeck:rundeck-core:3.0.14-20190221'

implementation(libs.rundeckCore) {
exclude group: "com.google.guava"
}

// Use the awesome Spock testing and specification framework
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4'
testImplementation libs.bundles.testLibs
}

// In this section you declare where to find the dependencies of your project
Expand Down
16 changes: 16 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[versions]
axionRelease = "1.18.17"
groovy = "3.0.23"
rundeckCore = "5.8.0-20241205"
spock = "2.3-groovy-3.0"

[libraries]
rundeckCore = { group = "org.rundeck", name = "rundeck-core", version.ref = "rundeckCore" }
groovyAll = { group = "org.codehaus.groovy", name = "groovy-all", version.ref = "groovy" }
spockCore = { group = "org.spockframework", name = "spock-core", version.ref = "spock" }

[bundles]
testLibs = ["groovyAll", "spockCore"]

[plugins]
axionRelease = { id = "pl.allegro.tech.build.axion-release", version.ref = "axionRelease" }