-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (42 loc) · 1.08 KB
/
build.gradle
File metadata and controls
50 lines (42 loc) · 1.08 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
dependencies {
classpath('com.gradle.publish:plugin-publish-plugin:0.9.4',
'de.undercouch:gradle-download-task:3.1.1')
}
}
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: "com.gradle.plugin-publish"
group = 'com.xebialabs.gradle.plugins'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile "de.undercouch:gradle-download-task:3.1.1"
}
pluginBundle {
website = project.project_url
vcsUrl = project.project_scm
description = project.project_description
tags = ['xlr', 'xltv', 'xld', 'Docker', 'xebialabs', 'XL Release', 'XL TestView', 'XL Deploy']
plugins {
xlDockerPlugin {
id = 'com.xebialabs.xl.docker'
displayName = 'XebiaLabs XL Docker plugin'
}
}
}
ext {
docker_xl_version = System.properties['xl.docker.xl.version']
}