From 0f51a536914b61d30f5c80eedd5f42f800d8914a Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 19 Mar 2015 13:55:32 +0000 Subject: [PATCH] Remove manual Gradle plugin versionManagement test Following the move to using the separate dependency management plugin this test is no longer valid. It should have been removed as part of 2c3c62d7 See gh-2133 --- .../versionManagement/.gradletasknamecache | 0 .../versionManagement/build.gradle | 29 ------------------- .../manual-test/versionManagement/readme.txt | 3 -- .../java/VersionManagementApplication.java | 22 -------------- 4 files changed, 54 deletions(-) delete mode 100644 spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/.gradletasknamecache delete mode 100644 spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/build.gradle delete mode 100644 spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/readme.txt delete mode 100644 spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/src/main/java/VersionManagementApplication.java diff --git a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/.gradletasknamecache b/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/.gradletasknamecache deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/build.gradle b/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/build.gradle deleted file mode 100644 index d5d58e98a90..00000000000 --- a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/build.gradle +++ /dev/null @@ -1,29 +0,0 @@ -buildscript { - ext { - springBootVersion = '1.1.0.BUILD-SNAPSHOT' - } - repositories { - mavenLocal() - } - dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") - } -} - -apply plugin: 'java' -apply plugin: 'spring-boot' - -repositories { - mavenLocal() - mavenCentral() - maven { url "http://repo.spring.io/release" } - maven { url "http://repo.spring.io/milestone" } - maven { url "http://repo.spring.io/snapshot" } -} - -dependencies { - versionManagement("io.spring.platform:platform-versions:1.0.0.BUILD-SNAPSHOT@properties") - compile("org.springframework.boot:spring-boot-starter") - compile("org.springframework.data:spring-data-hadoop") - testCompile("org.springframework.boot:spring-boot-starter-test") -} diff --git a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/readme.txt b/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/readme.txt deleted file mode 100644 index 60d8ea04cc1..00000000000 --- a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/readme.txt +++ /dev/null @@ -1,3 +0,0 @@ -simple manual test to show how versionManagement dependencies can be used - -run gradle dependencies and check that there are no failures diff --git a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/src/main/java/VersionManagementApplication.java b/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/src/main/java/VersionManagementApplication.java deleted file mode 100644 index 7e28586fa28..00000000000 --- a/spring-boot-tools/spring-boot-gradle-plugin/src/manual-test/versionManagement/src/main/java/VersionManagementApplication.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright 2012-2014 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -public class VersionManagementApplication { - - public static void main(String[] args) { - } - -}