aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-02-19 15:42:14 +0000
committerterminaldweller <thabogre@gmail.com>2022-02-19 15:42:14 +0000
commit4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403 (patch)
tree0008012e628a0b25a30cedb185fb300617156be9 /build.gradle.kts
parentInitial commit (diff)
downloadmdrtl-4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403.tar.gz
mdrtl-4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403.zip
updates
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts22
1 files changed, 22 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..6438891
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,22 @@
+/*
+ * This file was generated by the Gradle 'init' task.
+ *
+ * This is a general purpose Gradle build.
+ * Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.3.3/samples
+ * This project uses @Incubating APIs which are subject to change.
+ */
+
+ plugins {
+ `java-library`
+ }
+
+ sourceSets {
+ main {
+ java.srcDir("src/main/java/hello")
+ }
+ }
+
+ java {
+ sourceCompatibility = JavaVersion.VERSION_11
+ targetCompatibility = JavaVersion.VERSION_11
+ }