-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-bintray.gradle
More file actions
35 lines (28 loc) · 1.13 KB
/
release-bintray.gradle
File metadata and controls
35 lines (28 loc) · 1.13 KB
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
apply plugin: 'com.android.library'
// Set up everything required for releasing on Bintray
ext {
bintrayRepo = 'maven'
bintrayName = "${POM_ARTIFACT_ID}"
bintrayDescription = POM_DESCRIPTION
projectUrl = 'https://github.com/loopeer/ProjectDevelopModule'
issuesUrl = 'https://github.com/loopeer/ProjectDevelopModule/issues'
scmUrl = 'https://github.com/loopeer/ProjectDevelopModule.git'
scmConnection = 'scm:git:https://github.com/loopeer/ProjectDevelopModule.git'
scmDeveloperConnection = 'scm:git:git@github.com/loopeer/ProjectDevelopModule.git'
publishedGroupId = GROUP
libraryName = 'loopeermodule'
artifact = 'loopeermodule'
developerId = 'loopeer'
developerName = 'loopeer'
projectLicenses = {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
bintrayprojectLicenses = ["Apache-2.0"]
}
// Set up the Android Maven publication (POM etc.)
apply from: rootProject.file('gradle/android-maven-install.gradle')
// Upload to Bintray
apply from: rootProject.file('gradle/bintray.gradle')