aboutsummaryrefslogtreecommitdiff
path: root/passgen
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-12-09 22:00:33 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2021-12-21 02:13:23 +0530
commit67f8eb840425ce287041d5ac5094c7831779f4d7 (patch)
tree6c7455d8eb165000d677c7a269954c7e410f16a9 /passgen
parent29c5e65bf7b27a38cb81a675d2f5b51ad0d44be6 (diff)
diceware: init empty module
Diffstat (limited to 'passgen')
-rw-r--r--passgen/diceware/build.gradle.kts14
1 files changed, 14 insertions, 0 deletions
diff --git a/passgen/diceware/build.gradle.kts b/passgen/diceware/build.gradle.kts
new file mode 100644
index 00000000..8a10f467
--- /dev/null
+++ b/passgen/diceware/build.gradle.kts
@@ -0,0 +1,14 @@
+/*
+ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
+ * SPDX-License-Identifier: GPL-3.0-only
+ */
+
+plugins {
+ kotlin("jvm")
+ id("com.github.android-password-store.kotlin-library")
+}
+
+dependencies {
+ implementation(libs.dagger.hilt.core)
+ testImplementation(libs.bundles.testDependencies)
+}