38 lines
1.3 KiB
Groovy
38 lines
1.3 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'spring-boot'
|
|
|
|
apply from: JAVA_GRADLE
|
|
apply from: TOMCAT_7_GRADLE
|
|
|
|
tasks.findByPath("artifactoryPublish")?.enabled = false
|
|
|
|
group = 'samples'
|
|
|
|
dependencies {
|
|
compile project(':spring-session-data-redis'),
|
|
"org.springframework.boot:spring-boot-starter-web",
|
|
"org.springframework.boot:spring-boot-starter-data-jpa",
|
|
"org.springframework.boot:spring-boot-starter-thymeleaf",
|
|
"org.springframework.boot:spring-boot-starter-websocket",
|
|
"org.springframework:spring-websocket:${springVersion}",
|
|
"org.springframework.data:spring-data-jpa:1.7.0.RELEASE",
|
|
"nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect",
|
|
"com.h2database:h2",
|
|
"org.springframework.security:spring-security-web:$springSecurityVersion",
|
|
"org.springframework.security:spring-security-config:$springSecurityVersion",
|
|
"org.springframework.security:spring-security-messaging:$springSecurityVersion",
|
|
"org.springframework.security:spring-security-data:$springSecurityVersion"
|
|
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test",
|
|
"org.springframework.security:spring-security-test:$springSecurityVersion"
|
|
|
|
} |