spring-showcase/spring-websockets-demo1/build.gradle

27 lines
712 B
Groovy

plugins {
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'ch.tpolgrabia.demos.springshowcase'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.webjars.npm:sockjs-client:1.5.0'
implementation 'org.webjars:stomp-websocket:2.3.3'
implementation 'org.webjars.npm:bulma:0.9.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}