Browse Source

Move Hibernate52 tests under smoke tests

Closes gh-17393
pull/17418/head
Madhura Bhave 7 years ago
parent
commit
0a02a3a19c
  1. 1
      spring-boot-tests/spring-boot-integration-tests/pom.xml
  2. 1
      spring-boot-tests/spring-boot-smoke-tests/pom.xml
  3. 7
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/pom.xml
  4. 0
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java
  5. 0
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java

1
spring-boot-tests/spring-boot-integration-tests/pom.xml

@ -18,7 +18,6 @@ @@ -18,7 +18,6 @@
<modules>
<module>spring-boot-configuration-processor-tests</module>
<module>spring-boot-devtools-tests</module>
<module>spring-boot-hibernate52-tests</module>
<module>spring-boot-server-tests</module>
<module>spring-boot-launch-script-tests</module>
</modules>

1
spring-boot-tests/spring-boot-smoke-tests/pom.xml

@ -46,6 +46,7 @@ @@ -46,6 +46,7 @@
<module>spring-boot-smoke-test-devtools</module>
<module>spring-boot-smoke-test-flyway</module>
<module>spring-boot-smoke-test-hateoas</module>
<module>spring-boot-smoke-test-hibernate52</module>
<module>spring-boot-smoke-test-integration</module>
<module>spring-boot-smoke-test-jersey</module>
<module>spring-boot-smoke-test-jetty</module>

7
spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/pom.xml → spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/pom.xml

@ -3,12 +3,13 @@ @@ -3,12 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<artifactId>spring-boot-smoke-tests</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-integration-tests</artifactId>
<version>${revision}</version>
</parent>
<artifactId>spring-boot-hibernate52-tests</artifactId>
<name>Spring Boot Hibernate 5.2 tests</name>
<artifactId>spring-boot-smoke-test-hibernate52</artifactId>
<name>Spring Boot Hibernate 5.2 Smoke Tests</name>
<description>${project.name}</description>
<properties>
<main.basedir>${basedir}/../../..</main.basedir>

0
spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java → spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/main/java/org/springframework/boot/tests/hibernate52/Hibernate52Application.java

0
spring-boot-tests/spring-boot-integration-tests/spring-boot-hibernate52-tests/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java → spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hibernate52/src/test/java/org/springframework/boot/tests/hibernate52/Hibernate52ApplicationTests.java

Loading…
Cancel
Save