aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/playground-android/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/src/test/resources/playground-android/build.gradle.kts')
-rw-r--r--integration-tests/src/test/resources/playground-android/build.gradle.kts20
1 files changed, 20 insertions, 0 deletions
diff --git a/integration-tests/src/test/resources/playground-android/build.gradle.kts b/integration-tests/src/test/resources/playground-android/build.gradle.kts
new file mode 100644
index 00000000..b54fb383
--- /dev/null
+++ b/integration-tests/src/test/resources/playground-android/build.gradle.kts
@@ -0,0 +1,20 @@
+buildscript {
+ val testRepo: String by project
+
+ repositories {
+ maven(testRepo)
+ mavenCentral()
+ maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
+ google()
+ }
+}
+
+allprojects {
+ val testRepo: String by project
+ repositories {
+ maven(testRepo)
+ mavenCentral()
+ maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/")
+ google()
+ }
+}