29 lines
793 B
Groovy
29 lines
793 B
Groovy
apply plugin: 'java'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url "https://repo.spring.io/plugins-release" }
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.6")
|
|
classpath("org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE")
|
|
classpath('me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1')
|
|
classpath('org.asciidoctor:asciidoctor-gradle-plugin:0.7.0')
|
|
classpath('org.asciidoctor:asciidoctor-java-integration:0.1.4.preview.1')
|
|
}
|
|
}
|
|
|
|
group = 'org.springframework.session'
|
|
|
|
sourceCompatibility = 1.5
|
|
targetCompatibility = 1.5
|
|
|
|
ext.JAVA_GRADLE = "$rootDir/gradle/java.gradle"
|
|
|
|
ext.servletApiVersion = '3.0.1'
|
|
ext.springSecurityVersion = '3.2.4.RELEASE'
|
|
ext.springVersion = '4.0.2.RELEASE'
|
|
|
|
|
|
|