-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 895 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
44
45
46
47
plugins {
id 'groovy'
id 'maven-publish'
id "com.jfrog.bintray" version "1.4"
}
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile gradleTestKit()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
}
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'com.eowise'
artifactId 'blender'
version '0.5.1'
}
}
}
bintray {
user = bintrayUser
key = bintrayKey
publications = ['MyPublication']
pkg {
repo = 'maven'
name = 'gradle-blender'
licenses = ['MIT']
vcsUrl = 'https://github.com/eowise/gradle-blender.git'
version {
name = '0.5.1'
vcsTag = 'v0.5.1'
}
}
}