Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblock-android-settings/build.gradle

Issue 29784577: Issue 6205 - Upload artifacs to maven repository (Closed)
Patch Set: Created May 17, 2018, 1:25 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | adblock-android-webview/build.gradle » ('j') | adblock-android/AndroidManifest.xml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblock-android-settings/build.gradle
===================================================================
--- a/adblock-android-settings/build.gradle
+++ b/adblock-android-settings/build.gradle
@@ -1,19 +1,18 @@
apply plugin: 'com.android.library'
+apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion 21
buildToolsVersion "25.0.0"
defaultConfig {
minSdkVersion 21
targetSdkVersion 21
- versionCode 5
- versionName "2.2"
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
@@ -28,8 +27,20 @@
}
}
dependencies {
debugCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Debug")
releaseCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Release")
compile 'com.android.support:support-v4:21.0.3'
}
+
+publish {
+ userOrg = rootProject.ext.bintrayUserOrg
+ groupId = rootProject.ext.bintrayGroupId
+ artifactId = 'adblock-android-settings'
+ publishVersion = '2.2'
+ licences = rootProject.ext.bintrayLicences
+ desc = 'An Android library that provides a configuration interface for Adblock Plus.'
+ website = rootProject.ext.bintrayWebsite
+ issueTracker = rootProject.ext.bintrayIssueTracker
+ repository = rootProject.ext.bintrayRepository
+}
« no previous file with comments | « no previous file | adblock-android-webview/build.gradle » ('j') | adblock-android/AndroidManifest.xml » ('J')

Powered by Google App Engine
This is Rietveld