-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
118 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
|
||
apply plugin: 'com.github.dcendents.android-maven' | ||
apply plugin: 'com.jfrog.bintray' | ||
|
||
// load properties | ||
Properties properties = new Properties() | ||
File localPropertiesFile = project.file("local.properties"); | ||
if(localPropertiesFile.exists()){ | ||
properties.load(localPropertiesFile.newDataInputStream()) | ||
} | ||
File projectPropertiesFile = project.file("project.properties"); | ||
if(projectPropertiesFile.exists()){ | ||
properties.load(projectPropertiesFile.newDataInputStream()) | ||
} | ||
|
||
// read properties | ||
def projectName = properties.getProperty("project.name") | ||
def projectGroupId = properties.getProperty("project.groupId") | ||
def projectArtifactId = properties.getProperty("project.artifactId") | ||
def projectVersionName = android.defaultConfig.versionName | ||
def projectPackaging = properties.getProperty("project.packaging") | ||
def projectSiteUrl = properties.getProperty("project.siteUrl") | ||
def projectGitUrl = properties.getProperty("project.gitUrl") | ||
|
||
def developerId = properties.getProperty("developer.id") | ||
def developerName = properties.getProperty("developer.name") | ||
def developerEmail = properties.getProperty("developer.email") | ||
|
||
def bintrayUser = properties.getProperty("bintray.user") | ||
def bintrayApikey = properties.getProperty("bintray.apikey") | ||
|
||
def javadocName = properties.getProperty("javadoc.name") | ||
|
||
group = projectGroupId | ||
|
||
// This generates POM.xml with proper parameters | ||
install { | ||
repositories.mavenInstaller { | ||
pom { | ||
project { | ||
name projectName | ||
groupId projectGroupId | ||
artifactId projectArtifactId | ||
version projectVersionName | ||
packaging projectPackaging | ||
url projectSiteUrl | ||
licenses { | ||
license { | ||
name 'The Apache Software License, Version 2.0' | ||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id developerId | ||
name developerName | ||
email developerEmail | ||
} | ||
} | ||
scm { | ||
connection projectGitUrl | ||
developerConnection projectGitUrl | ||
url projectSiteUrl | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
// This generates sources.jar | ||
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)) | ||
} | ||
|
||
// This generates javadoc.jar | ||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = 'javadoc' | ||
from javadoc.destinationDir | ||
} | ||
|
||
artifacts { | ||
archives javadocJar | ||
archives sourcesJar | ||
} | ||
|
||
// javadoc configuration | ||
javadoc { | ||
options{ | ||
encoding "UTF-8" | ||
charSet 'UTF-8' | ||
author true | ||
version projectVersionName | ||
links "http://docs.oracle.com/javase/7/docs/api" | ||
title javadocName | ||
} | ||
} | ||
|
||
// bintray configuration | ||
bintray { | ||
user = bintrayUser | ||
key = bintrayApikey | ||
configurations = ['archives'] | ||
pkg { | ||
repo = "maven" | ||
name = projectName | ||
websiteUrl = projectSiteUrl | ||
vcsUrl = projectGitUrl | ||
licenses = ["Apache-2.0"] | ||
publish = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters