mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
16 lines
314 B
Kotlin
16 lines
314 B
Kotlin
plugins {
|
|
id("java")
|
|
id("org.springframework.boot") version "4.0.8"
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
}
|