Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/schaal/ocreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schaal <daniel@schaal.email>2021-07-16 06:52:22 +0300
committerDaniel Schaal <daniel@schaal.email>2021-07-25 10:10:47 +0300
commita634a8bf53aa74c5e4fd1e9a4769b3da984d06b2 (patch)
tree44acb08d8a1eef5b4112da360fb1f0009475a543 /build.gradle.kts
parent424b48db1788b344414d980ef416cffcc9e1069e (diff)
Convert gradle scripts to kotlin
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts48
1 files changed, 48 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 00000000..68aa4ac0
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2015-2016 Daniel Schaal <daniel@schaal.email>
+ *
+ * This file is part of OCReader.
+ *
+ * OCReader is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OCReader is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with OCReader. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+buildscript {
+ repositories {
+ mavenCentral()
+ google()
+ }
+ dependencies {
+ classpath("com.android.tools.build:gradle:4.2.2")
+ // keep kotlin version in sync with app/build.gradle.kts
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
+ classpath("io.realm:realm-gradle-plugin:10.6.1")
+ }
+}
+
+plugins {
+ // keep aboutlibraries version in sync with app/build.gradle.kts
+ id("com.mikepenz.aboutlibraries.plugin") version "8.9.0" apply false
+}
+
+allprojects {
+ repositories {
+ mavenCentral()
+ google()
+ }
+}
+
+tasks.register("clean", Delete::class) {
+ delete(rootProject.buildDir)
+} \ No newline at end of file