-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (36 loc) · 866 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'groovy'
id "com.gradle.plugin-publish" version "0.11.0"
id "java-gradle-plugin"
}
sourceCompatibility = 1.8
version = "1.3"
group = "com.vast.gradle"
repositories {
jcenter()
}
gradlePlugin {
plugins {
docker {
id = 'vast.gradle-docker'
implementationClass = 'com.vast.gradle.plugin.docker.DockerPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/vastik/gradle-docker-plugin'
vcsUrl = 'https://github.com/vastik/gradle-docker-plugin'
description = 'Build docker from dockerfile and push it to docker registry'
tags = ['docker']
plugins {
docker {
// id is captured from java-gradle-plugin configuration
displayName = 'Gradle docker plugin'
}
}
}