forked from typ0520/bizsocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bintray.gradle
100 lines (85 loc) · 2.44 KB
/
bintray.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'
def projectName = project.name
def mavenDesc = projectName
def baseUrl = 'https://github.com/baidao/bizsocket'
def siteUrl = baseUrl
def gitUrl = "${baseUrl}.git"
def issueUrl = "${baseUrl}/issues"
def licenseIds = ['Apache-2.0']
def licenseNames = ['The Apache Software License, Version 2.0']
def licenseUrls = ['https://www.apache.org/licenses/LICENSE-2.0.txt']
def inception = '2016'
Properties props = new Properties()
try {
props.load(project.rootProject.file('local.properties').newDataInputStream())
} catch (Throwable e) {
}
def bintray_user = props.getProperty("BINTRAY_USER","")
def bintray_key = props.getProperty("BINTRAY_KEY","")
install {
repositories {
mavenInstaller {
pom.project {
// Description
name projectName
description mavenDesc
url siteUrl
// Archive
groupId project.group
artifactId archivesBaseName
version project.version
// License
inceptionYear inception
licenses {
licenseNames.eachWithIndex { ln, li ->
license {
name ln
url licenseUrls[li]
}
}
}
developers {
developer {
name bintray_user
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier = 'sources'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}
//tasks['javadocJar'].enabled = false
artifacts {
archives javadocJar
archives sourcesJar
}
bintray {
user = bintray_user
key = bintray_key
configurations = ['archives']
pkg {
repo = 'maven'
name = "${project.group}:${projectName}"
desc = mavenDesc
websiteUrl = siteUrl
issueTrackerUrl = issueUrl
vcsUrl = gitUrl
labels = ['bizsocket','java','android', 'socket']
licenses = licenseIds
publish = true
publicDownloadNumbers = true
}
}