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}" |
} |
} |