-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
60 lines (50 loc) · 1.13 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
plugins {
id 'org.ajoberstar.defaults' version '0.7.2'
id 'groovy'
id 'java-gradle-plugin'
}
group = 'org.ajoberstar'
repositories {
jcenter()
}
configurations.all {
exclude group: 'org.codehaus.groovy'
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.ajoberstar:grgit:1.9.1'
compatTestCompile gradleTestKit()
compatTestCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
compatTestCompile 'org.ajoberstar:grgit:1.9.1'
}
stutter {
supports '3.0', '3.1', '3.2', '3.2.1', '3.3', '3.4', '3.5-rc-3'
}
model {
bintray {
owner = 'ajoberstar'
repo = 'maven'
pkg = 'gradle-git-publish'
}
}
pluginBundle {
website = 'https://github.com/ajoberstar/gradle-git-publish'
vcsUrl = 'https://github.com/ajoberstar/gradle-git-publish.git'
description = 'Publishing to Git repositories'
plugins {
publishPlugin {
id = 'org.ajoberstar.git-publish'
displayName = 'Git Publish Plugin'
tags = ['publish', 'git']
}
}
mavenCoordinates {
groupId = project.group
artifactId = project.name
version = project.version
}
}
wrapper {
gradleVersion = '3.4'
}