-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
91 lines (80 loc) · 2.51 KB
/
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
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
apply plugin: 'com.github.dcendents.android-maven'
group = 'org.videolan.android'
version = library_version
def siteUrl = 'https://code.videolan.org/videolan/mudiAudioVideo-android/'
def gitUrl = 'https://code.videolan.org/videolan/mudiAudioVideo-android.git'
def licenseName = 'GNU Lesser General Public License, version 2.1'
def licenseUrl = 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html'
def allLicenses = ["LGPL-2.1"]
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
}
install {
group = 'publishing'
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom.project {
packaging 'aar'
artifactId lib_artifact
name repoName
description libraryDescription
url 'https://code.videolan.org/videolan/mudiAudioVideo-android/'
licenses {
license {
name licenseName
url licenseUrl
}
}
developers {
developer {
id 'videolan'
name 'VideoLAN'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
apply plugin: 'com.jfrog.bintray'
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 = repoName
name = libraryName
desc = libraryDescription
websiteUrl = siteUrl
issueTrackerUrl = 'https://code.videolan.org/videolan/mudiAudioVideo-android/issues'
licenses = allLicenses
vcsUrl = gitUrl
labels = ['aar', 'android', 'mudiAudioVideo']
dryRun = false
override = true
publicDownloadNumbers = true
version {
desc = libraryDescription
}
}
// publish = true
}