-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (53 loc) · 1.54 KB
/
build.gradle
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
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.15.0'
}
group 'com.github.jazzschmidt'
version '1.0.1'
repositories {
mavenCentral()
}
gradlePlugin {
plugins {
dockerPlugin {
id = 'com.github.jazzschmidt.gradle-docker-plugin'
implementationClass = 'com.github.jazzschmidt.gradle.docker.DockerPlugin'
description = '''\
Simple to use Gradle Plugin to build, tag and push Docker Images.
Supports Multi-Module-Projects, build caching, Java 8 and runs on Gradle 6+
and 7.
'''.stripIndent()
}
}
}
pluginBundle {
website = 'https://github.com/jazzschmidt/gradle-docker-plugin'
vcsUrl = 'https://github.com/jazzschmidt/gradle-docker-plugin'
tags = [
'docker'
]
plugins {
dockerPlugin {
displayName = 'Gradle Docker Plugin'
description = '''\
Simple to use Gradle Plugin to build, tag and push Docker Images.
Supports Multi-Module-Projects, build caching, Java 8 and runs on Gradle 6+
and 7.
'''.stripIndent()
}
}
}
dependencies {
implementation gradleApi()
implementation "org.codehaus.groovy:groovy:2.5.14"
testImplementation platform("org.spockframework:spock-bom:2.0-groovy-2.5")
testImplementation "org.spockframework:spock-core"
testImplementation gradleTestKit()
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}