From fabf1ea7b460d378fe6f5c41e638aad6045d773a Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 28 Apr 2020 08:09:47 +0100 Subject: [PATCH] Remove Spring I/O Platform plugin --- README.md | 5 ----- build.gradle | 17 ----------------- 2 files changed, 22 deletions(-) diff --git a/README.md b/README.md index 2e977a9f..eb2c2942 100644 --- a/README.md +++ b/README.md @@ -64,11 +64,6 @@ Generate Eclipse settings and then manually import projects: ./import-into-eclipse.sh ```` -To run tests against the Spring IO Platform (and Hibernate 5): -```` -./gradlew clean springIoCheck -PJDK8_HOME=<> -PplatformVersion=2.1.0.BUILD-SNAPSHOT -```` - The Spring Framework and Spring Web Flow use a very similar build system. For this reason the following [Gradle build FAQ](https://github.com/SpringSource/spring-framework/wiki/Gradle-build-and-release-FAQ) would be a very useful read. # Contributing diff --git a/build.gradle b/build.gradle index 1a3dcd36..38ea4884 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,6 @@ buildscript { } dependencies { classpath("io.spring.gradle:propdeps-plugin:0.0.9.RELEASE") - classpath("io.spring.gradle:spring-io-plugin:0.0.8.RELEASE") classpath("org.asciidoctor:asciidoctor-gradle-plugin:1.5.9.2") classpath "org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16" } @@ -51,22 +50,6 @@ subprojects { subproject -> configure(subprojects.findAll { it.name != "spring-build-src" && it.name != "spring-js-resources"}) { subproject -> - if (project.hasProperty('platformVersion')) { - apply plugin: 'spring-io' - - repositories { - maven { url "https://repo.spring.io/libs-snapshot" } - } - - dependencyManagement { - springIoTestRuntime { - imports { - mavenBom "io.spring.platform:platform-bom:${platformVersion}" - } - } - } - } - subproject.ext { springVersion = "5.1.7.RELEASE" springSecurityVersion = "5.1.5.RELEASE"