aboutsummaryrefslogtreecommitdiff
path: root/coroutine-utils-testing/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine-utils-testing/build.gradle.kts')
-rw-r--r--coroutine-utils-testing/build.gradle.kts14
1 files changed, 14 insertions, 0 deletions
diff --git a/coroutine-utils-testing/build.gradle.kts b/coroutine-utils-testing/build.gradle.kts
new file mode 100644
index 00000000..96d87dc1
--- /dev/null
+++ b/coroutine-utils-testing/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(projects.coroutineUtils)
+ implementation(libs.testing.junit)
+ implementation(libs.kotlin.coroutines.test)
+}