Skip to content

Commit d9466f5

Browse files
committed
Move smoke tests under spring-boot-test
See spring-projectsgh-17393
1 parent 40f66c8 commit d9466f5

File tree

718 files changed

+96
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

718 files changed

+96
-96
lines changed

ci/scripts/build-smoke-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ source $(dirname $0)/common.sh
55
repository=$(pwd)/distribution-repository
66

77
pushd git-repo > /dev/null
8-
run_maven -f spring-boot-smoke-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
8+
run_maven -f spring-boot-tests/spring-boot-smoke-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
99
popd > /dev/null

ci/scripts/stage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ git commit -m"Release v$stageVersion" > /dev/null
3636
git tag -a "v$stageVersion" -m"Release v$stageVersion" > /dev/null
3737

3838
run_maven -f spring-boot-project/pom.xml clean deploy -U -Dfull -DaltDeploymentRepository=distribution::default::file://${repository}
39-
run_maven -f spring-boot-smoke-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
39+
run_maven -f spring-boot-tests/spring-boot-smoke-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
4040
run_maven -f spring-boot-tests/spring-boot-integration-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
4141
run_maven -f spring-boot-tests/spring-boot-deployment-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
4242

pom.xml

-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@
107107
<modules>
108108
<module>spring-boot-project</module>
109109
<!-- Smoke tests are built via the invoker plugin -->
110-
<module>spring-boot-smoke-tests-invoker</module>
111110
<module>spring-boot-tests</module>
112111
</modules>
113112
</profile>
@@ -121,7 +120,6 @@
121120
</activation>
122121
<modules>
123122
<module>spring-boot-project</module>
124-
<module>spring-boot-smoke-tests</module>
125123
<module>spring-boot-tests</module>
126124
</modules>
127125
</profile>

spring-boot-tests/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
</properties>
1818
<modules>
1919
<!-- Deployment tests are slow so don't include by default -->
20+
<module>spring-boot-smoke-tests-invoker</module>
2021
<module>spring-boot-integration-tests</module>
2122
</modules>
2223
<profiles>
@@ -29,6 +30,7 @@
2930
</property>
3031
</activation>
3132
<modules>
33+
<module>spring-boot-smoke-tests-invoker</module>
3234
<module>spring-boot-integration-tests</module>
3335
<module>spring-boot-deployment-tests</module>
3436
</modules>

spring-boot-smoke-tests-invoker/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests-invoker/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-parent</artifactId>
88
<version>${revision}</version>
9-
<relativePath>../spring-boot-project/spring-boot-parent</relativePath>
9+
<relativePath>../../spring-boot-project/spring-boot-parent</relativePath>
1010
</parent>
1111
<artifactId>spring-boot-smoke-tests-invoker</artifactId>
1212
<packaging>pom</packaging>
1313
<name>Spring Boot Smoke Tests Invoker</name>
1414
<description>Spring Boot Smoke Tests Invoker</description>
1515
<properties>
16-
<main.basedir>${basedir}/..</main.basedir>
16+
<main.basedir>${basedir}/../..</main.basedir>
1717
</properties>
1818
<build>
1919
<plugins>
@@ -23,7 +23,7 @@
2323
<artifactId>maven-invoker-plugin</artifactId>
2424
<inherited>false</inherited>
2525
<configuration>
26-
<projectsDirectory>${main.basedir}/spring-boot-smoke-tests</projectsDirectory>
26+
<projectsDirectory>${main.basedir}/spring-boot-tests/spring-boot-smoke-tests</projectsDirectory>
2727
<skipInvocation>${skipTests}</skipInvocation>
2828
<streamLogs>true</streamLogs>
2929
<pomIncludes>
@@ -54,7 +54,7 @@
5454
<configuration>
5555
<target>
5656
<delete includeemptydirs="true">
57-
<fileset dir="${main.basedir}/spring-boot-smoke-tests"
57+
<fileset dir="${main.basedir}/spring-boot-tests/spring-boot-smoke-tests"
5858
includes="**/target/" />
5959
</delete>
6060
</target>

spring-boot-smoke-tests/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
88
<version>${revision}</version>
9-
<relativePath>../spring-boot-project/spring-boot-starters/spring-boot-starter-parent</relativePath>
9+
<relativePath>../../spring-boot-project/spring-boot-starters/spring-boot-starter-parent</relativePath>
1010
</parent>
1111
<artifactId>spring-boot-smoke-tests</artifactId>
1212
<packaging>pom</packaging>
1313
<name>Spring Boot Smoke Tests</name>
1414
<description>Spring Boot Smoke Tests</description>
1515
<properties>
16-
<main.basedir>${basedir}/..</main.basedir>
16+
<main.basedir>${basedir}/../..</main.basedir>
1717
<java.version>1.8</java.version>
1818
<disable.checks>false</disable.checks>
1919
</properties>

spring-boot-smoke-tests/spring-boot-smoke-test-activemq/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-activemq/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot ActiveMQ Smoke Test</name>
1313
<description>Spring Boot ActiveMQ Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-actuator-custom-security/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-custom-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Actuator Custom Security Smoke Test</name>
1313
<description>Spring Boot Actuator Custom Security Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-actuator-log4j2/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-log4j2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Actuator Log4j 2 Smoke Test</name>
1313
<description>Spring Boot Actuator Log4j 2 Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-actuator-noweb/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-noweb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Actuator Non-Web Smoke Test</name>
1313
<description>Spring Boot Actuator Non-Web Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-actuator-ui/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator-ui/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Actuator UI Smoke Test</name>
1313
<description>Spring Boot Actuator UI Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-actuator/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-actuator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Actuator Smoke Test</name>
1313
<description>Spring Boot Actuator Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-amqp/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-amqp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<name>Spring Boot AMQP Smoke Test</name>
1414
<description>Spring Boot AMQP Smoke Test</description>
1515
<properties>
16-
<main.basedir>${basedir}/../..</main.basedir>
16+
<main.basedir>${basedir}/../../..</main.basedir>
1717
</properties>
1818
<dependencies>
1919
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-animated-banner/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-animated-banner/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Animated Banner Smoke Test</name>
1313
<description>Spring Boot Animated Banner Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-ant/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<name>Spring Boot Ant Smoke Test</name>
1414
<description>Spring Boot Ant Smoke Test</description>
1515
<properties>
16-
<main.basedir>${basedir}/../..</main.basedir>
16+
<main.basedir>${basedir}/../../..</main.basedir>
1717
<ant.version>1.9.3</ant.version>
1818
</properties>
1919
<dependencies>

spring-boot-smoke-tests/spring-boot-smoke-test-aop/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-aop/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot AOP Smoke Test</name>
1313
<description>Spring Boot AOP Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-atmosphere/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-atmosphere/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Atmosphere Smoke Test</name>
1313
<description>Spring Boot Atmosphere Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-batch/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Batch Smoke Test</name>
1313
<description>Spring Boot Batch Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-cache/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-cache/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Cache Smoke Test</name>
1313
<description>Spring Boot Cache Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-custom-layout/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-custom-layout/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Custom Layout Smoke Test</name>
1313
<description>Spring Boot Custom Layout Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-cassandra/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-cassandra/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data Cassandra Smoke Test</name>
1313
<description>Spring Boot Data Cassandra Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-couchbase/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-couchbase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<name>Spring Boot Data Couchbase Smoke Test</name>
1212
<description>Spring Boot Data Couchbase Smoke Test</description>
1313
<properties>
14-
<main.basedir>${basedir}/../..</main.basedir>
14+
<main.basedir>${basedir}/../../..</main.basedir>
1515
</properties>
1616
<dependencies>
1717
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-elasticsearch/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-elasticsearch/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data Elasticsearch Smoke Test</name>
1313
<description>Spring Boot Data Elasticsearch Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-jdbc/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data JDBC Smoke Test</name>
1313
<description>Spring Boot Data JDBC Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-jpa/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-jpa/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data JPA Smoke Test</name>
1313
<description>Spring Boot Data JPA Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-ldap/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-ldap/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data LDAP Smoke Test</name>
1313
<description>Spring Boot Data LDAP Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-mongodb/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-mongodb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data MongoDB Smoke Test</name>
1313
<description>Spring Boot Data MongoDB Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-neo4j/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-neo4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data Neo4j Smoke Test</name>
1313
<description>Spring Boot Data Neo4j Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-redis/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-redis/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data Redis Smoke Test</name>
1313
<description>Spring Boot Data Redis Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-rest/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-rest/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data REST Smoke Test</name>
1313
<description>Spring Boot Data REST Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-data-solr/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-data-solr/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Data Solr Smoke Test</name>
1313
<description>Spring Boot Data Solr Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-devtools/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-devtools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Developer Tools Smoke Test</name>
1313
<description>Spring Boot Developer Tools Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-flyway/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-flyway/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Flyway Smoke Test</name>
1313
<description>Spring Boot Flyway Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-hateoas/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-hateoas/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Hateoas Smoke Test</name>
1313
<description>Spring Boot Hateoas Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-integration/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-integration/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Integration Smoke Test</name>
1313
<description>Spring Boot Integration Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
</properties>
1717
<dependencies>
1818
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-jersey/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jersey/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<name>Spring Boot Jersey Smoke Test</name>
1414
<description>Spring Boot Jersey Smoke Test</description>
1515
<properties>
16-
<main.basedir>${basedir}/../..</main.basedir>
16+
<main.basedir>${basedir}/../../..</main.basedir>
1717
</properties>
1818
<dependencies>
1919
<!-- Compile -->

spring-boot-smoke-tests/spring-boot-smoke-test-jetty-jsp/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jetty-jsp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<name>Spring Boot Jetty JSP Smoke Test</name>
1414
<description>Spring Boot Jetty JSP Smoke Test</description>
1515
<properties>
16-
<main.basedir>${basedir}/../..</main.basedir>
16+
<main.basedir>${basedir}/../../..</main.basedir>
1717
<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
1818
<servlet-api.version>3.1.0</servlet-api.version>
1919
</properties>

spring-boot-smoke-tests/spring-boot-smoke-test-jetty-ssl/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jetty-ssl/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Jetty SSL Smoke Test</name>
1313
<description>Spring Boot Jetty SSL Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
<servlet-api.version>3.1.0</servlet-api.version>
1717
</properties>
1818
<dependencies>

spring-boot-smoke-tests/spring-boot-smoke-test-jetty/pom.xml renamed to spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jetty/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Spring Boot Jetty Smoke Test</name>
1313
<description>Spring Boot Jetty Smoke Test</description>
1414
<properties>
15-
<main.basedir>${basedir}/../..</main.basedir>
15+
<main.basedir>${basedir}/../../..</main.basedir>
1616
<servlet-api.version>3.1.0</servlet-api.version>
1717
</properties>
1818
<dependencies>

0 commit comments

Comments
 (0)