forked from Chainfire/librootjava
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
155 lines (134 loc) · 4.05 KB
/
build.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
consumerProguardFiles 'proguard.txt'
}
buildTypes {
release {
minifyEnabled false
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
dependencies {
/* Use module sources directly */
//implementation project(':librootjava')
/* Use local Maven repository version, installed by installMavenLocal Gradle task */
//implementation('eu.chainfire:librootjava:1.3.0-SNAPSHOT') { changing = true }
/* Use bintray/jcenter version */
implementation 'eu.chainfire:librootjava:1.3.0'
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}
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
}
ext {
libraryName = 'libRootJavaDaemon'
libraryDescription = 'Add-on for libRootJava to run the root process as a daemon'
publishedGroupId = 'eu.chainfire'
artifact = 'librootjavadaemon'
siteUrl = 'https://github.com/Chainfire/librootjava'
gitUrl = 'https://github.com/Chainfire/librootjava.git'
issueTrackerUrl = 'https://github.com/Chainfire/librootjava/issues'
libraryVersion = '1.3.0'
developerId = 'Chainfire'
developerName = 'Jorrit Jongma'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
bintrayRepo = 'maven'
bintrayName = artifact
}
task installMavenLocal(type: Upload) {
repositories.mavenInstaller {
configuration = configurations['archives']
pom.project {
packaging 'aar'
groupId = publishedGroupId
artifactId = artifact
version = libraryVersion + '-SNAPSHOT'
}
}
}
// Workaround bintray bug ignoring these from pom and bintray settings
version = libraryVersion
group = publishedGroupId
bintray {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
user = properties.getProperty('bintray.user')
key = properties.getProperty('bintray.apikey')
configurations = ['archives']
dryRun = false
publish = true
pkg {
repo = bintrayRepo
name = libraryName
desc = libraryDescription
websiteUrl = siteUrl
issueTrackerUrl = issueTrackerUrl // doesn't actually work?
vcsUrl = gitUrl
//githubRepo = gitUrl // some more bintray weirdness here, breaks upload
//githubReleaseNotesFile = 'README.md'
licenses = allLicenses
publicDownloadNumbers = true
version {
name = libraryVersion
released = new Date()
}
}
}
install {
repositories.mavenInstaller {
pom.project {
packaging 'aar'
groupId = publishedGroupId
artifactId = artifact
name libraryName
version = libraryVersion
url siteUrl
licenses {
license {
name licenseName
url licenseUrl
}
}
developers {
developer {
id developerId
name developerName
email developerEmail
}
}
scm {
connection gitUrl
developerConnection gitUrl
url gitUrl
}
}
}
}
bintrayUpload.dependsOn install