-
Notifications
You must be signed in to change notification settings - Fork 12
/
deploy.gradle
75 lines (68 loc) · 2.13 KB
/
deploy.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
repositories {
mavenCentral()
}
apply plugin: 'maven'
def versionTag = version.toString()
def githubUrl = 'https://' + githubRepo
def scmUrl = 'scm:git:git://' + githubRepo + '.git'
bintray {
user = bintrayUser
key = bintrayKey
dryRun = deployDryRun ? true : false // Whether to run this as dry-run, without deploying
publish = true // If version should be auto published after an upload
configurations = ['archives'] // Use the archives Configuration.
pkg {
repo = 'maven'
name = pkgName
userOrg = user
licenses = [pkgLicense]
publicDownloadNumbers = false
vcsUrl = githubUrl + '.git'
desc = pkgDesc
websiteUrl = githubUrl
issueTrackerUrl = githubUrl + '/issues'
version {
name = versionTag
desc = pkgDesc
vcsTag = versionTag
released = new Date()
gpg {
sign = true // Determines whether to GPG sign the files.
}
mavenCentralSync {
sync = true // Optional (true by default). Determines whether to sync the version to Maven Central.
user = mavenUserToken // OSS user token
password = mavenUserPass // OSS user password
close = '1' // Close staging repository and release artifacts to Maven Central. Default = 1 (true). Set to 0 = You will release the version manually.
}
}
}
}
install {
repositories.mavenInstaller {
pom.name = pkgName
pom.version = versionTag
pom.artifactId = pkgName
pom.project {
name pkgName
packaging 'bundle'
description pkgDesc
url githubUrl
scm {
url githubUrl
connection scmUrl
developerConnection scmUrl
}
developers {
developer devInfo
}
licenses {
license {
name pkgLicense
url pkgLicenseUrl
distribution 'repo'
}
}
}
}
}