Skip to content

Commit 6454fc0

Browse files
authored
Merge pull request #52 from rundeck-plugins/RUN-3598-review-slack-template-enhancment
RUN-3598: Add Slack custom templates Option
2 parents 05438ad + 2dddd19 commit 6454fc0

3 files changed

Lines changed: 431 additions & 62 deletions

File tree

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ dependencies {
4848
implementation(libs.rundeckCore) {
4949
exclude(group: "com.jcraft")
5050
}
51+
52+
testImplementation("org.mockito:mockito-core:5.13.0")
53+
testImplementation("org.slf4j:slf4j-simple:2.0.13")
54+
testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")
55+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
56+
testImplementation(libs.rundeckCore)
5157

5258
// Add secure commons-lang3 to provide alternative to vulnerable commons-lang 2.6
5359
implementation(libs.commonsLang3)
@@ -67,7 +73,9 @@ tasks.register('copyToLib', Copy) {
6773
into "$buildDir/output/lib"
6874
from configurations.pluginLibs
6975
}
70-
76+
tasks.test {
77+
useJUnitPlatform()
78+
}
7179
jar {
7280
//include contents of output dir
7381
from "$buildDir/output"

0 commit comments

Comments
 (0)