Skip to content

Commit

Permalink
Fix some Gradle warnings (#1883)
Browse files Browse the repository at this point in the history
fix some Gradle warnings
  • Loading branch information
bartekpacia authored Aug 3, 2024
1 parent 0249a1b commit aa4316c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions maestro-studio/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

application {
applicationName = 'maestro-studio'
mainClassName = 'maestro.studio.ServerKt'
mainClass = 'maestro.studio.ServerKt'
}

plugins.withId("com.vanniktech.maven.publish") {
Expand All @@ -26,6 +26,10 @@ tasks.compileJava {
dependsOn(copyWebFiles)
}

tasks.processResources {
dependsOn(copyWebFiles)
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -42,4 +46,4 @@ dependencies {
implementation(libs.ktor.server.status.pages)
implementation(libs.jackson.module.kotlin)
implementation(libs.square.okhttp)
}
}

0 comments on commit aa4316c

Please sign in to comment.