aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2023-05-09 16:31:47 -0600
committerBryson Steck <brysonsteck@protonmail.com>2023-05-09 16:31:47 -0600
commit7db4d246d920586edcc485d514d9651dcc370d67 (patch)
tree96707a77637d400f1e223122ed4c1afa137732a4 /app/build.gradle
parent47de8220d52dde525d107ee076d090a48ee02c2e (diff)
downloadServerCraft-7db4d246d920586edcc485d514d9651dcc370d67.tar
ServerCraft-7db4d246d920586edcc485d514d9651dcc370d67.tar.gz
ServerCraft-7db4d246d920586edcc485d514d9651dcc370d67.tar.bz2
logic seems fine?
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle11
1 files changed, 4 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 8add66f..ac1dd3b 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -8,7 +8,7 @@
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
- id 'org.jetbrains.kotlin.jvm' version '1.6.0'
+ id 'org.jetbrains.kotlin.jvm' version '1.8.0'
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
@@ -32,12 +32,9 @@ dependencies {
// 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'
+ implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.0"
+ implementation "org.jetbrains.kotlinx:kotlinx-coroutines-javafx:1.7.0"
}
application {
@@ -63,4 +60,4 @@ tasks.named('test') {
javafx {
version = "20"
modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics']
-} \ No newline at end of file
+}