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

Unified Diff: 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
Index: build.gradle
===================================================================
--- a/build.gradle
+++ b/build.gradle
@@ -21,24 +21,33 @@
} else {
return "abi_all"
}
}
buildscript {
repositories {
mavenLocal()
- mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
+ classpath 'com.novoda:bintray-release:0.8.1'
}
}
+ext {
+ bintrayUserOrg = 'adblockplus'
diegocarloslima 2018/05/17 13:45:47 We still need to discuss what will be our organiza
+ bintrayGroupId = 'org.adblockplus'
diegocarloslima 2018/05/17 13:45:48 I think that for the group id is fine if we strip
+ bintrayLicences = ['GPL-3.0']
+ bintrayWebsite = 'https://github.com/adblockplus/libadblockplus-android'
+ bintrayIssueTracker = 'http://issues.adblockplus.org/'
+ bintrayRepository = 'https://github.com/adblockplus/libadblockplus-android.git'
+}
+
def gradleBuildDir = System.getenv('GRADLE_BUILD_DIR')
if (gradleBuildDir != null) {
println "[Configuration] Building project in ${gradleBuildDir}"
allprojects {
buildDir = "${gradleBuildDir}/${project.name}"
}
}

Powered by Google App Engine
This is Rietveld