From 47de8220d52dde525d107ee076d090a48ee02c2e Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 7 May 2023 16:52:51 -0600 Subject: might as well commit before I go further --- app/build.gradle | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 app/build.gradle (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..8add66f --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,66 @@ +/* + * This file was generated by the Gradle 'init' task. + * + * This generated file contains a sample Kotlin application project to get you started. + * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle + * User Manual available at https://docs.gradle.org/8.0.2/userguide/building_java_projects.html + */ + +plugins { + // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin. + id 'org.jetbrains.kotlin.jvm' version '1.6.0' + + // Apply the application plugin to add support for building a CLI application in Java. + id 'application' + + id 'org.openjfx.javafxplugin' version '0.0.13' + id 'distribution' +} + +repositories { + // Use Maven Central for resolving dependencies. + mavenCentral() +} + +dependencies { + // Use the Kotlin JUnit 5 integration. + testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5' + + // Use the JUnit 5 integration. + testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1' + + // This dependency is used by the application. + implementation 'com.google.guava:guava:31.1-jre' + + // Ktor + implementation "io.ktor:ktor-server-core:2.3.0" + implementation "io.ktor:ktor-server-netty:2.3.0" + + // Coroutines core + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2' +} + +application { + // Define the main class for the application. + mainClass = 'xyz.brysonsteck.serverfordummies.MainKt' +} + +jar { + manifest { + attributes 'Main-Class': application.mainClass + } + duplicatesStrategy = DuplicatesStrategy.INCLUDE + from { + configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } + } +} + +tasks.named('test') { + // Use JUnit Platform for unit tests. + useJUnitPlatform() +} + +javafx { + version = "20" + modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics'] +} \ No newline at end of file -- cgit v1.2.3