forked from vmware-archive/cf-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.gradle
43 lines (37 loc) · 1005 Bytes
/
release.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
install {
repositories.mavenInstaller {
pom {
project {
name project.name
description project.description
url project.url
organization {
name project.vendor
}
licenses {
license {
name project.license
url "${project.url}/blob/master/LICENSE"
distribution 'repo'
}
}
scm {
url project.url
connection "scm:git:${project.url}.git"
}
}
}
}
}
bintray {
user = project.findProperty("bintrayUser")
key = project.findProperty("bintrayKey")
pkg {
repo = 'maven-repo'
name = project.name
licenses = [ project.license ]
vcsUrl = project.url
}
configurations = ['archives']
publish = true
}