-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin-publish.gradle
65 lines (58 loc) · 1.67 KB
/
plugin-publish.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
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'
apply plugin:'maven'
def baseUrl = 'https://github.com/devnan'
def siteUrl = baseUrl
def gitUrl = "${baseUrl}/black-white-plugin"
def issueUrl = "${gitUrl}/issues"
install {
repositories {
mavenInstaller {
pom.project {
name 'Black and White Plugin for Android'
url siteUrl
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
name 'Devnan'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
Properties properties = new Properties()
properties.load(project.rootProject.file("local.properties").newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = 'devnan-repo'
name = 'black-white-plugin'
websiteUrl = siteUrl
issueTrackerUrl = issueUrl
vcsUrl = gitUrl
labels = ['gradle', 'plugin']
licenses = ['Apache-2.0']
publish = true
}
}