Skip to content

Instantly share code, notes, and snippets.

@cdsap
Created August 22, 2020 01:02
Show Gist options
  • Save cdsap/8f4eecd0039af22005bb25c697ef54f1 to your computer and use it in GitHub Desktop.
Save cdsap/8f4eecd0039af22005bb25c697ef54f1 to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.3.72"
repositories {
google()
jcenter()
maven {
url = "http://oss.jfrog.org/artifactory/oss-snapshot-local"
}
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "com.cdsap.talaiot.plugin:base:1.4.0-SNAPSHOT"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "com.cdsap.talaiot.plugin.base"
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
talaiot{
publishers{
jsonPublisher = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment