diff options
author | terminaldweller <thabogre@gmail.com> | 2022-02-19 15:42:14 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-02-19 15:42:14 +0000 |
commit | 4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403 (patch) | |
tree | 0008012e628a0b25a30cedb185fb300617156be9 /build.gradle.kts | |
parent | Initial commit (diff) | |
download | mdrtl-4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403.tar.gz mdrtl-4f6f33fdb2530a1ee3c835416b08cc1c6fd7e403.zip |
updates
Diffstat (limited to '')
-rw-r--r-- | build.gradle.kts | 22 |
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 + } |