-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
134 lines (106 loc) · 4.97 KB
/
build.gradle.kts
File metadata and controls
134 lines (106 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import com.mkobit.jenkins.pipelines.http.AnonymousAuthentication
plugins {
java
groovy
jacoco
id("com.mkobit.jenkins.pipelines.shared-library") version "0.10.1"
id("com.github.ben-manes.versions") version "0.51.0"
id("org.jenkins-ci.jpi") version "0.55.0" apply false
}
repositories {
mavenCentral()
}
tasks {
register<org.jenkinsci.gradle.plugins.jpi.TestDependenciesTask>("resolveIntegrationTestDependencies") {
into {
val javaConvention = project.convention.getPlugin<JavaPluginConvention>()
File("${javaConvention.sourceSets.integrationTest.get().output.resourcesDir}/test-dependencies")
}
configuration = configurations.integrationTestRuntimeClasspath.get()
}
processIntegrationTestResources {
dependsOn("resolveIntegrationTestDependencies")
}
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
val junitVersion = "5.13.4"
val spockVersion = "1.3-groovy-2.4"
val groovyVersion = "2.4.21"
val slf4jVersion = "2.0.17"
val jsonschemaVersion = "4.38.0"
dependencies {
implementation("org.codehaus.groovy", "groovy-all", groovyVersion)
implementation("jakarta.servlet", "jakarta.servlet-api", "5.0.0")
// jsonschema-generator
implementation("com.github.victools", "jsonschema-generator", jsonschemaVersion)
implementation("com.github.victools", "jsonschema-module-jackson", jsonschemaVersion)
// unit-tests
testRuntimeOnly("org.junit.platform", "junit-platform-launcher", "1.13.4")
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", junitVersion)
testImplementation("org.junit.jupiter", "junit-jupiter-api", junitVersion)
testImplementation("org.assertj", "assertj-core", "3.26.3")
testImplementation("org.mockito", "mockito-core", "5.19.0")
testImplementation("org.slf4j", "slf4j-api", slf4jVersion)
testImplementation("org.slf4j", "slf4j-simple", slf4jVersion)
// integration-tests
integrationTestImplementation("org.jenkins-ci.main", "jenkins-test-harness", "2488.v0c38b_4e6b_cfa_")
integrationTestImplementation("org.spockframework", "spock-core", spockVersion)
integrationTestImplementation("org.codehaus.groovy", "groovy-all", groovyVersion)
integrationTestImplementation("org.springframework.security", "spring-security-core", "6.5.2")
integrationTestImplementation("jakarta.servlet", "jakarta.servlet-api", "5.0.0")
integrationTestImplementation("org.slf4j", "slf4j-api", slf4jVersion)
integrationTestImplementation("org.slf4j", "slf4j-simple", slf4jVersion)
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
reports {
html.required.set(true)
}
}
tasks.check {
dependsOn(tasks.jacocoTestReport)
dependsOn(tasks.integrationTest)
}
tasks.jacocoTestReport {
reports {
xml.required.set(true)
xml.outputLocation.set(File("$buildDir/reports/jacoco/test/jacoco.xml"))
}
}
jenkinsIntegration {
baseUrl.set(uri("http://localhost:5050").toURL())
authentication.set(providers.provider { AnonymousAuthentication })
downloadDirectory.set(layout.projectDirectory.dir("jenkinsResources"))
}
sharedLibrary {
// TODO: this will need to be altered when auto-mapping functionality is complete
coreVersion.set(jenkinsIntegration.downloadDirectory.file("core-version.txt").map { it.asFile.readText().trim() })
// TODO: retrieve downloaded plugin resource
pluginDependencies {
dependency("org.jenkins-ci.plugins", "pipeline-build-step", "571.v08a_fffd4b_0ce")
dependency("org.jenkins-ci.plugins", "pipeline-utility-steps", "2.19.0")
dependency("org.jenkins-ci.plugins", "durable-task", "595.ve87b_f1318d67")
dependency("org.jenkins-ci.plugins", "git", "5.7.0")
dependency("org.jenkins-ci.plugins", "http_request", "1.20")
dependency("org.jenkins-ci.plugins", "timestamper", "1.30")
dependency("org.jenkins-ci.plugins", "credentials", "1419.v2337d1ceceef")
dependency("org.jenkins-ci.plugins", "token-macro", "477.vd4f0dc3cb_cf1")
dependency("org.jenkins-ci.plugins.workflow", "workflow-step-api", "706.v518c5dcb_24c0")
dependency("org.jenkins-ci.modules", "sshd", "3.374.v19b_d59ce6610")
dependency("org.6wind.jenkins", "lockable-resources", "1412.v3f305a_fb_a_117")
dependency("ru.yandex.qatools.allure", "allure-jenkins-plugin", "2.32.0")
dependency("io.jenkins.blueocean", "blueocean-pipeline-api-impl", "1.27.21")
dependency("sp.sd", "file-operations", "353.vf3b_9b_a_f1f7f7")
val declarativePluginsVersion = "2.2265.v140e610fe9d5"
dependency("org.jenkinsci.plugins", "pipeline-model-api", declarativePluginsVersion)
dependency("org.jenkinsci.plugins", "pipeline-model-definition", declarativePluginsVersion)
dependency("org.jenkinsci.plugins", "pipeline-model-extensions", declarativePluginsVersion)
dependency("org.jenkinsci.plugins", "pipeline-model-declarative-agent", "1.1.1")
}
}