-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbintray.gradle
95 lines (90 loc) · 2.75 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
/**
* 调用步骤
* 1.在buildscript的depencies下加入以下依赖
* classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
* classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
* 2.在要引用脚本的地方添加 apply from './bintray.gradle'.(最好是在文件未尾加上此句)
* 3.在gradle.properties中定义以下变量
* LIBGROUP:组织
* LIBVERSION:lib库版本
* LIBARTIFACT:lib库名称
* LIBSITE:lib库网址
* LIBGIT:lib库git地址
* 4.在local.properties定义以下变量
* bintray.user:jcenter账号
* bintray.key:jcenter Apikey
*
* */
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'
//define group,version artifact,site,git site,those defined in gradle.properties
group = LIBGROUP
version = LIBVERSION
project.archivesBaseName = LIBARTIFACT
def siteUrl = LIBSITE
def gitUrl = LIBGIT
//define javadoc,javaSource
//打包javadocjar和javasourcejar
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
archives sourcesJar
}
//define pom
install {
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom {
project {
packaging 'aar'
name LIBARTIFACT
url siteUrl
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'llf'
name 'llfer'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}
//upload configure
bintray {
java.util.Properties properties = new Properties()
properties.load(rootProject.file('local.properties').newDataInputStream())
user = properties.getProperty('bintray.user')
key = properties.getProperty('bintray.key')
configurations = ['archives']
pkg {
repo = "maven"
name = LIBARTIFACT // project name in jcenter
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}