aboutsummaryrefslogtreecommitdiff
path: root/passgen
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-10-24 14:46:38 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-10-24 14:46:38 +0530
commitedc110dcc148be7362c4e48ffbff151764afc966 (patch)
tree9eab1687059f9786e09cee2c76d2cbfd5583d594 /passgen
parentf5c49c285dcd573524d1ad80d075a646ca4972cf (diff)
chore(gradle): add missing suppressions and license headers
Diffstat (limited to 'passgen')
-rw-r--r--passgen/diceware/build.gradle.kts1
-rw-r--r--passgen/random/build.gradle.kts6
2 files changed, 7 insertions, 0 deletions
diff --git a/passgen/diceware/build.gradle.kts b/passgen/diceware/build.gradle.kts
index f612b691..5a7ce8c1 100644
--- a/passgen/diceware/build.gradle.kts
+++ b/passgen/diceware/build.gradle.kts
@@ -2,6 +2,7 @@
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/
+@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
plugins {
id("com.github.android-password-store.android-library")
diff --git a/passgen/random/build.gradle.kts b/passgen/random/build.gradle.kts
index f91458dd..ea598259 100644
--- a/passgen/random/build.gradle.kts
+++ b/passgen/random/build.gradle.kts
@@ -1,3 +1,9 @@
+/*
+ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
+ * SPDX-License-Identifier: GPL-3.0-only
+ */
+@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
+
plugins {
kotlin("jvm")
id("com.github.android-password-store.kotlin-library")