build.gradle 438 B

12345678910111213141516171819202122
  1. plugins {
  2. id 'org.springframework.boot' version '2.7.6'
  3. id 'io.spring.dependency-management' version '1.0.15.RELEASE'
  4. id 'java'
  5. }
  6. group = 'com.example'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '1.8'
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-websocket'
  14. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  15. }
  16. test {
  17. useJUnitPlatform()
  18. }