36 lines
856 B
Groovy
36 lines
856 B
Groovy
buildscript {
|
|
ext {
|
|
springBootVersion = '1.5.6.RELEASE'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
dependencies {
|
|
compile('org.springframework.boot:spring-boot-starter-jersey')
|
|
compile('org.springframework.boot:spring-boot-starter-web')
|
|
compile('org.springframework.boot:spring-boot-starter-websocket')
|
|
compile('org.webjars:sockjs-client:0.3.4')
|
|
compile('org.webjars:bootstrap:3.3.7-1')
|
|
compile('org.webjars:jquery:3.2.1')
|
|
compile('org.webjars:bootbox:4.4.0')
|
|
compile('org.webjars:jquery:3.2.1')
|
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
}
|