|
|
@@ -1,5 +1,29 @@ |
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
+ext {
|
|
|
+ bintrayRepo = 'maven'
|
|
|
+ bintrayName = 'bottom-bar'
|
|
|
+
|
|
|
+ publishedGroupId = 'com.roughike'
|
|
|
+ libraryName = 'bottom-bar'
|
|
|
+ artifact = 'bottom-bar'
|
|
|
+
|
|
|
+ libraryDescription = 'A custom view component that mimicks the Material Design "Bottom navigation" pattern.'
|
|
|
+
|
|
|
+ siteUrl = 'https://github.com/roughike/BottomBar'
|
|
|
+ gitUrl = 'https://github.com/roughike/BottomBar.git'
|
|
|
+
|
|
|
+ libraryVersion = '0.0.1'
|
|
|
+
|
|
|
+ developerId = 'roughike'
|
|
|
+ developerName = 'Iiro Krankka'
|
|
|
+ developerEmail = 'iiro.krankka@gmail.com'
|
|
|
+
|
|
|
+ licenseName = 'The Apache Software License, Version 2.0'
|
|
|
+ licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
|
+ allLicenses = ["Apache-2.0"]
|
|
|
+}
|
|
|
+
|
|
|
android {
|
|
|
compileSdkVersion 23
|
|
|
buildToolsVersion "23.0.2"
|
|
@@ -23,3 +47,106 @@ dependencies { |
|
|
testCompile 'junit:junit:4.12'
|
|
|
compile 'com.android.support:appcompat-v7:23.2.0'
|
|
|
}
|
|
|
+
|
|
|
+apply plugin: 'com.github.dcendents.android-maven'
|
|
|
+
|
|
|
+group = publishedGroupId // Maven Group ID for the artifact
|
|
|
+
|
|
|
+install {
|
|
|
+ repositories.mavenInstaller {
|
|
|
+ // This generates POM.xml with proper parameters
|
|
|
+ pom {
|
|
|
+ project {
|
|
|
+ packaging 'aar'
|
|
|
+ groupId publishedGroupId
|
|
|
+ artifactId artifact
|
|
|
+
|
|
|
+ // Add your description here
|
|
|
+ name libraryName
|
|
|
+ description libraryDescription
|
|
|
+ url siteUrl
|
|
|
+
|
|
|
+ // Set your license
|
|
|
+ licenses {
|
|
|
+ license {
|
|
|
+ name licenseName
|
|
|
+ url licenseUrl
|
|
|
+ }
|
|
|
+ }
|
|
|
+ developers {
|
|
|
+ developer {
|
|
|
+ id developerId
|
|
|
+ name developerName
|
|
|
+ email developerEmail
|
|
|
+ }
|
|
|
+ }
|
|
|
+ scm {
|
|
|
+ connection gitUrl
|
|
|
+ developerConnection gitUrl
|
|
|
+ url siteUrl
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+apply plugin: 'com.jfrog.bintray'
|
|
|
+
|
|
|
+version = libraryVersion
|
|
|
+
|
|
|
+if (project.hasProperty("android")) { // Android libraries
|
|
|
+ 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))
|
|
|
+ }
|
|
|
+} else { // Java libraries
|
|
|
+ task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
+ classifier = 'sources'
|
|
|
+ from sourceSets.main.allSource
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
+ classifier = 'javadoc'
|
|
|
+ from javadoc.destinationDir
|
|
|
+}
|
|
|
+
|
|
|
+artifacts {
|
|
|
+ archives javadocJar
|
|
|
+ archives sourcesJar
|
|
|
+}
|
|
|
+
|
|
|
+// 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 = bintrayRepo
|
|
|
+ name = bintrayName
|
|
|
+ desc = libraryDescription
|
|
|
+ websiteUrl = siteUrl
|
|
|
+ vcsUrl = gitUrl
|
|
|
+ licenses = allLicenses
|
|
|
+ publish = true
|
|
|
+ publicDownloadNumbers = true
|
|
|
+ version {
|
|
|
+ desc = libraryDescription
|
|
|
+ gpg {
|
|
|
+ sign = true //Determines whether to GPG sign the files. The default is false
|
|
|
+ passphrase = properties.getProperty("bintray.gpg.password")
|
|
|
+ //Optional. The passphrase for GPG signing'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
0 comments on commit
16659f0