diff options
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 8f14bbc6..5a278514 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,15 +2,12 @@ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: GPL-3.0-only */ - -buildscript { - repositories { mavenCentral() } - dependencies { classpath(libs.build.hilt) } -} +@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage") plugins { id("com.github.android-password-store.kotlin-common") id("com.github.android-password-store.binary-compatibility") id("com.github.android-password-store.git-hooks") id("com.github.android-password-store.spotless") + alias(libs.plugins.hilt) apply false } |