12345678910111213141516171819202122232425262728 |
- plugins {
- id 'org.springframework.boot' version '3.3.0'
- id 'java'
- }
- apply plugin: 'io.spring.dependency-management'
- group = 'com.example'
- version = '0.0.1-SNAPSHOT'
- java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(17)
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-websocket'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- test {
- useJUnitPlatform()
- }
|