1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00

Remove groovy stuff from build gradle

This commit is contained in:
Allan Wang 2019-07-02 23:24:22 -07:00
parent 5a107bcb76
commit 16e575ee54
No known key found for this signature in database
GPG Key ID: C93E3F9C679D7A56

View File

@ -1,9 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { plugins {
`kotlin-dsl` `kotlin-dsl`
// groovy
// idea
} }
group = "com.pitchedapps" group = "com.pitchedapps"
@ -26,22 +22,7 @@ val kau = rootProps.useLines {
println("Using kau $kau") println("Using kau $kau")
//sourceSets {
// main {
// withConvention(GroovySourceSet::class) {
// groovy.srcDir("src/main/groovy")
// }
// }
//}
dependencies { dependencies {
implementation("ca.allanwang.kau:gradle-plugin:$kau") implementation("ca.allanwang.kau:gradle-plugin:$kau")
implementation("com.moowork.gradle:gradle-node-plugin:1.3.1") implementation("com.moowork.gradle:gradle-node-plugin:1.3.1")
} }
//val compileGroovy = tasks.withType<GroovyCompile>().first()
//val compileKotlin = tasks.withType<KotlinCompile>().first()
//
//compileGroovy.dependsOn.remove(compileKotlin)
//compileKotlin.dependsOn(compileGroovy)
//compileKotlin.classpath += files(compileGroovy.destinationDir)