wulkanowy-mod/build.gradle

45 lines
1.2 KiB
Groovy
Raw Normal View History

2017-03-09 21:29:23 +01:00
buildscript {
repositories {
jcenter()
mavenCentral()
2018-03-04 12:49:16 +01:00
google()
2018-03-04 16:53:53 +01:00
maven { url "https://plugins.gradle.org/m2/" }
2017-03-09 21:29:23 +01:00
}
dependencies {
2017-11-26 16:32:33 +01:00
classpath 'com.android.tools.build:gradle:3.0.1'
2017-03-09 21:29:23 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
2017-11-26 16:32:33 +01:00
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
2017-11-18 22:17:18 +01:00
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
2017-03-09 21:29:23 +01:00
}
}
project.ext.preDexLibs = !project.hasProperty("disablePreDex")
subprojects {
project.plugins.whenPluginAdded { plugin ->
if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
} else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
}
}
}
2017-11-26 16:32:33 +01:00
ext {
GROUP_ID = "io.github.wulkanowy"
}
2017-03-09 21:29:23 +01:00
allprojects {
repositories {
jcenter()
mavenCentral()
2018-03-04 12:49:16 +01:00
google()
2017-03-09 21:29:23 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}