build.gradle 762 B

1234567891011121314151617181920212223242526272829
  1. plugins {
  2. id 'org.springframework.boot' version '2.2.2.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.8.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. implementation 'org.webjars:webjars-locator-core'
  15. implementation 'org.webjars:sockjs-client:1.0.2'
  16. implementation 'org.webjars:stomp-websocket:2.3.3'
  17. implementation 'org.webjars:bootstrap:3.3.7'
  18. implementation 'org.webjars:jquery:3.1.0'
  19. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  20. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  21. }
  22. }
  23. test {
  24. useJUnitPlatform()
  25. }