File tree 2 files changed +28
-13
lines changed
2 files changed +28
-13
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ buildscript {
7
7
classpath ' me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1'
8
8
classpath(' org.asciidoctor:asciidoctor-gradle-plugin:0.7.0' )
9
9
classpath(' org.asciidoctor:asciidoctor-java-integration:0.1.4.preview.1' )
10
+ classpath ' org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE'
10
11
}
11
12
}
12
13
@@ -30,7 +31,9 @@ configure(allprojects - docProjects) {
30
31
31
32
sourceSets. test. resources. srcDirs = [' src/test/resources' , ' src/test/java' ]
32
33
33
- test. systemProperty(" java.awt.headless" , " true" )
34
+ tasks. withType(Test ). all {
35
+ systemProperty(" java.awt.headless" , " true" )
36
+ }
34
37
35
38
repositories {
36
39
maven { url " http://repo.spring.io/libs-snapshot" }
@@ -72,6 +75,18 @@ configure(allprojects - docProjects) {
72
75
configure(subprojects - docProjects) { subproject ->
73
76
apply from : " ${ rootProject.projectDir} /publish-maven.gradle"
74
77
78
+ if (project. hasProperty(' platformVersion' )) {
79
+ apply plugin : ' spring-io'
80
+
81
+ repositories {
82
+ maven { url " https://repo.spring.io/libs-snapshot" }
83
+ }
84
+
85
+ dependencies {
86
+ springIoVersions " io.spring.platform:platform-versions:${ platformVersion} @properties"
87
+ }
88
+ }
89
+
75
90
jar {
76
91
manifest. attributes[' Implementation-Title' ] = subproject. name
77
92
manifest. attributes[' Implementation-Version' ] = subproject. version
Original file line number Diff line number Diff line change 1
- version = 1.1.1.BUILD-SNAPSHOT
2
- springSocialVersion = 1.1.0.RELEASE
3
- hamcrestVersion = 1.3
4
- jacksonVersion = 2.3.2
5
- jspApiVersion = 2.2.1
6
- junitVersion = 4.11
7
- mockitoVersion = 1.9.5
8
- servletApiVersion = 3.0.1
9
- springSecurityCryptoVersion = 3 .2.3.RELEASE
10
- springVersion = 4 .0.3.RELEASE
11
- springReleaseVersion = latest.release
12
- springSnapshotVersion = latest.integration
1
+ springSecurityCryptoVersion =3.2.3.RELEASE
2
+ junitVersion =4.11
3
+ springVersion =4.0.3.RELEASE
4
+ springSocialVersion =1.1.0.RELEASE
5
+ springSnapshotVersion =latest.integration
6
+ hamcrestVersion =1.3
7
+ version =1.1.2.BUILD-SNAPSHOT
8
+ jacksonVersion =2.3.2
9
+ jspApiVersion =2 .2.1
10
+ servletApiVersion =3 .0.1
11
+ springReleaseVersion = latest.release
12
+ mockitoVersion =1.9.5
You can’t perform that action at this time.
0 commit comments