diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-06 19:41:15 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-06 19:41:15 +0530 |
commit | b2d352e3ea671e84cc4f356a49786d1d3b2eaef6 (patch) | |
tree | e33d23a825d3eaa81bc2ce0bd6a621894a36adcc /buildSrc/build.gradle.kts | |
parent | 3fcf242c0770eb043b85d9d0a16e408780cf7527 (diff) |
Revert back to Groovy DSL
The Kotlin DSL's API is extremely terrible and makes the simplest tasks annoying. It also introduces a very noticeable build overhead that I'd rather not have.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'buildSrc/build.gradle.kts')
-rw-r--r-- | buildSrc/build.gradle.kts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts deleted file mode 100644 index 24b366c0..00000000 --- a/buildSrc/build.gradle.kts +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-3.0-only - */ -plugins { - `kotlin-dsl` -} - -repositories { - maven("https://plugins.gradle.org/m2/") - jcenter() -} - -kotlinDslPluginOptions { - experimentalWarning.set(false) -} - -dependencies { - implementation("com.diffplug.spotless:spotless-plugin-gradle:3.24.3") -} |