From 0a02a3a19c0efb99e3a48b80d9c76dace84c0a45 Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Tue, 2 Jul 2019 16:06:06 -0700 Subject: [PATCH] Move Hibernate52 tests under smoke tests Closes gh-17393 --- spring-boot-tests/spring-boot-integration-tests/pom.xml | 1 - spring-boot-tests/spring-boot-smoke-tests/pom.xml | 1 + .../spring-boot-smoke-test-hibernate52}/pom.xml | 7 ++++--- .../boot/tests/hibernate52/Hibernate52Application.java | 0 .../tests/hibernate52/Hibernate52ApplicationTests.java | 0 5 files changed, 5 insertions(+), 4 deletions(-) rename spring-boot-tests/{spring-boot-integration-tests/spring-boot-hibernate52-tests => spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52}/pom.xml (83%) rename spring-boot-tests/{spring-boot-integration-tests/spring-boot-hibernate52-tests => spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52}/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java (100%) rename spring-boot-tests/{spring-boot-integration-tests/spring-boot-hibernate52-tests => spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52}/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java (100%) diff --git a/spring-boot-tests/spring-boot-integration-tests/pom.xml b/spring-boot-tests/spring-boot-integration-tests/pom.xml index 27f08c15190..16c814635a7 100644 --- a/spring-boot-tests/spring-boot-integration-tests/pom.xml +++ b/spring-boot-tests/spring-boot-integration-tests/pom.xml @@ -18,7 +18,6 @@ spring-boot-configuration-processor-tests spring-boot-devtools-tests - spring-boot-hibernate52-tests spring-boot-server-tests spring-boot-launch-script-tests diff --git a/spring-boot-tests/spring-boot-smoke-tests/pom.xml b/spring-boot-tests/spring-boot-smoke-tests/pom.xml index 390f88dbe10..7d08c31aa74 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/pom.xml +++ b/spring-boot-tests/spring-boot-smoke-tests/pom.xml @@ -46,6 +46,7 @@ spring-boot-smoke-test-devtools spring-boot-smoke-test-flyway spring-boot-smoke-test-hateoas + spring-boot-smoke-test-hibernate52 spring-boot-smoke-test-integration spring-boot-smoke-test-jersey spring-boot-smoke-test-jetty diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/pom.xml b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/pom.xml similarity index 83% rename from spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/pom.xml rename to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/pom.xml index 20f5841cca3..d79c6692ee5 100755 --- a/spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/pom.xml +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/pom.xml @@ -3,12 +3,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + + spring-boot-smoke-tests org.springframework.boot - spring-boot-integration-tests ${revision} - spring-boot-hibernate52-tests - Spring Boot Hibernate 5.2 tests + spring-boot-smoke-test-hibernate52 + Spring Boot Hibernate 5.2 Smoke Tests ${project.name} ${basedir}/../../.. diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java similarity index 100% rename from spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java rename to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java similarity index 100% rename from spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java rename to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java