plugins { application } // main メソッドが定義されているクラス application { mainClass.set("Main") } tasks.named("run") { standardInput = System.`in` } repositories { mavenCentral() } tasks.withType { options.encoding = "UTF-8" } dependencies { compileOnly(group = "jakarta.servlet", name = "jakarta.servlet-api", version = "5.0.0") implementation(group="org.eclipse.jetty", name="jetty-server", version="11.0.15") implementation(group="org.eclipse.jetty", name="jetty-servlet", version="11.0.15") implementation("org.slf4j:slf4j-simple:2.0.7") }