summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorArne Schwabe <arne@openvpn.net>2019-02-03 17:49:20 +0100
committerArne Schwabe <arne@openvpn.net>2019-02-03 22:22:57 +0100
commitb3b28c74c0b319ac34993df29786ec1a5b2e9bde (patch)
tree5fad1dfd62a72b62abe76825934e9ed73fa7fb0b /build.gradle.kts
parentbabf18e0cecc299f004105b9ce6f0ad06003c9d9 (diff)
Change gradle files to kotlin
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 00000000..a0a3e571
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2012-2019 Arne Schwabe
+ * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
+ */
+
+
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ }
+ dependencies {
+ classpath("com.android.tools.build:gradle:3.3.0")
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.11")
+ }
+}
+
+
+repositories {
+ google()
+} \ No newline at end of file