-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
49 lines (41 loc) · 1.03 KB
/
build.gradle.kts
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
plugins {
`kotlin-dsl`
`maven-publish`
id("com.gradle.plugin-publish") version "1.2.1"
id("org.nosphere.gradle.github.actions") version "1.3.2"
}
group = "org.nosphere.gradle.github"
version = "1.5.0-SNAPSHOT"
gradlePlugin {
plugins {
named("org.nosphere.gradle.github.actions") {
displayName = "Gradle Github Actions Plugin"
description = "Gradle Plugin for Github Actions"
}
}
}
pluginBundle {
website = "https://github.com/eskatos/gradle-github-actions-plugin"
vcsUrl = "https://github.com/eskatos/gradle-github-actions-plugin"
tags = listOf("github-actions", "scans")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
withSourcesJar()
}
kotlinDslPluginOptions {
jvmTarget.set("1.8")
}
repositories {
gradlePluginPortal()
}
dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation(gradleTestKit())
}
tasks.validatePlugins {
failOnWarning.set(true)
enableStricterValidation.set(true)
}