32 lines
1.1 KiB
Groovy
32 lines
1.1 KiB
Groovy
plugins {
|
|
id "org.gretty" version "3.0.7"
|
|
id "io.spring.convention.spring-sample-war"
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':spring-session-hazelcast')
|
|
compile project(':hazelcast4')
|
|
compile "org.springframework:spring-web"
|
|
compile "org.springframework.security:spring-security-config"
|
|
compile "org.springframework.security:spring-security-web"
|
|
compile "org.webjars:bootstrap"
|
|
compile "org.webjars:webjars-taglib"
|
|
compile "com.hazelcast:hazelcast-client"
|
|
compile "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api"
|
|
compile "org.apache.taglibs:taglibs-standard-jstlel"
|
|
compile "org.slf4j:slf4j-api"
|
|
compile "org.slf4j:jcl-over-slf4j"
|
|
compile "org.slf4j:log4j-over-slf4j"
|
|
compile "ch.qos.logback:logback-classic"
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api"
|
|
providedCompile "javax.servlet.jsp:javax.servlet.jsp-api"
|
|
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.junit.jupiter:junit-jupiter-api"
|
|
testRuntime "org.junit.jupiter:junit-jupiter-engine"
|
|
|
|
integrationTestCompile "org.seleniumhq.selenium:htmlunit-driver"
|
|
integrationTestCompile "org.seleniumhq.selenium:selenium-support"
|
|
}
|