54 lines
1.3 KiB
Groovy
54 lines
1.3 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
apply from: JAVA_GRADLE
|
|
apply from: SAMPLE_GRADLE
|
|
|
|
group = 'samples'
|
|
|
|
dependencies {
|
|
compile project(':spring-session'),
|
|
"org.springframework.boot:spring-boot-starter-data-mongodb",
|
|
"org.springframework.boot:spring-boot-starter-web",
|
|
"org.springframework.boot:spring-boot-starter-security",
|
|
"org.springframework.boot:spring-boot-starter-thymeleaf",
|
|
"nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect",
|
|
"org.thymeleaf.extras:thymeleaf-extras-conditionalcomments",
|
|
"org.webjars:bootstrap:$bootstrapVersion",
|
|
"org.webjars:html5shiv:$html5ShivVersion",
|
|
"org.webjars:webjars-locator",
|
|
"de.flapdoodle.embed:de.flapdoodle.embed.mongo"
|
|
|
|
testCompile "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
integrationTestCompile seleniumDependencies
|
|
|
|
}
|
|
|
|
integrationTest {
|
|
doFirst {
|
|
def port = reservePort()
|
|
|
|
systemProperties['server.port'] = port
|
|
systemProperties['management.port'] = 0
|
|
|
|
systemProperties['spring.session.redis.namespace'] = project.name
|
|
}
|
|
}
|
|
|
|
def reservePort() {
|
|
def socket = new ServerSocket(0)
|
|
def result = socket.localPort
|
|
socket.close()
|
|
result
|
|
}
|