diff --git a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-ordered.yml b/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-ordered.yml deleted file mode 100644 index 76d3f1dc8a..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-ordered.yml +++ /dev/null @@ -1,11 +0,0 @@ -spring.profiles.active: A,B ---- -spring.profiles: A -version: A ---- -spring.profiles: B -version: B ---- -spring.profiles: C -version: C ---- diff --git a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-without-override.yml b/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-without-override.yml deleted file mode 100644 index 2640af09e4..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro-without-override.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- ---- -spring.profiles: A -version: A ---- -spring.profiles: B -version: B ---- -spring.profiles: C -version: C ---- diff --git a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro.yml b/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro.yml deleted file mode 100644 index 3871896a3b..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/activeprofilerepro.yml +++ /dev/null @@ -1,11 +0,0 @@ -spring.profiles.active: B ---- -spring.profiles: A -version: A ---- -spring.profiles: B -version: B ---- -spring.profiles: C -version: C ---- diff --git a/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithdifferentsubdoc.yml b/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithdifferentsubdoc.yml deleted file mode 100644 index 934c8c0aa7..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithdifferentsubdoc.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -spring.profiles: activeprofilewithdifferentsubdoc2 -foobar: baz ---- diff --git a/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithsubdoc.yml b/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithsubdoc.yml deleted file mode 100644 index 0d1112894a..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/application-activeprofilewithsubdoc.yml +++ /dev/null @@ -1,2 +0,0 @@ -spring.profiles: activeprofilewithsubdoc -foobar: baz diff --git a/spring-boot-project/spring-boot/src/test/resources/application-morespecific.properties b/spring-boot-project/spring-boot/src/test/resources/application-morespecific.properties deleted file mode 100644 index 65b26f856f..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/application-morespecific.properties +++ /dev/null @@ -1,2 +0,0 @@ -spring.profiles.include=yetmorespecific -spring.profiles.active=missing diff --git a/spring-boot-project/spring-boot/src/test/resources/application-simple.properties b/spring-boot-project/spring-boot/src/test/resources/application-simple.properties deleted file mode 100644 index 228e3f38c3..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/application-simple.properties +++ /dev/null @@ -1 +0,0 @@ -spring.profiles.active=other diff --git a/spring-boot-project/spring-boot/src/test/resources/application-specific.properties b/spring-boot-project/spring-boot/src/test/resources/application-specific.properties deleted file mode 100644 index 6fc460d83c..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/application-specific.properties +++ /dev/null @@ -1 +0,0 @@ -spring.profiles.include=morespecific diff --git a/spring-boot-project/spring-boot/src/test/resources/applicationloop-loop.properties b/spring-boot-project/spring-boot/src/test/resources/applicationloop-loop.properties deleted file mode 100644 index 0602540b20..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/applicationloop-loop.properties +++ /dev/null @@ -1 +0,0 @@ -spring.profiles.include=loop diff --git a/spring-boot-project/spring-boot/src/test/resources/applicationloop.properties b/spring-boot-project/spring-boot/src/test/resources/applicationloop.properties deleted file mode 100644 index 0602540b20..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/applicationloop.properties +++ /dev/null @@ -1 +0,0 @@ -spring.profiles.include=loop diff --git a/spring-boot-project/spring-boot/src/test/resources/applicationmultiprofiles.yml b/spring-boot-project/spring-boot/src/test/resources/applicationmultiprofiles.yml deleted file mode 100644 index bf40650401..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/applicationmultiprofiles.yml +++ /dev/null @@ -1,6 +0,0 @@ -spring.profiles.active: test, another-test -message: default ---- -spring: - profiles: test,another-test -message: multiprofile diff --git a/spring-boot-project/spring-boot/src/test/resources/cascadingprofiles.yml b/spring-boot-project/spring-boot/src/test/resources/cascadingprofiles.yml deleted file mode 100644 index 084431b99d..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/cascadingprofiles.yml +++ /dev/null @@ -1,67 +0,0 @@ -spring: - profiles: - active: - - A - - B - ---- -spring.profiles: A - -spring: - profiles: - include: - - C - - E -version: A - ---- -spring.profiles: B - -spring: - profiles: - include: - - D - - E -version: B - ---- -spring.profiles: C - -version: C - - ---- -spring.profiles: D - -version: D - - ---- -spring.profiles: E - -version: E - ---- -spring.profiles: "!A" - -not-a: true - ---- -spring.profiles: "!B" - -not-b: true - ---- -spring.profiles: "!C" - -not-c: true - ---- -spring.profiles: "!D" - -not-d: true - ---- -spring.profiles: "!E" - -not-e: true diff --git a/spring-boot-project/spring-boot/src/test/resources/enableprofileviaapplicationproperties.yml b/spring-boot-project/spring-boot/src/test/resources/enableprofileviaapplicationproperties.yml deleted file mode 100644 index 2e88b34de4..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/enableprofileviaapplicationproperties.yml +++ /dev/null @@ -1,3 +0,0 @@ -spring: - profiles: - include: a diff --git a/spring-boot-project/spring-boot/src/test/resources/profilenegation-b.yml b/spring-boot-project/spring-boot/src/test/resources/profilenegation-b.yml deleted file mode 100644 index 8781ad8416..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/profilenegation-b.yml +++ /dev/null @@ -1,2 +0,0 @@ -version: NOT A - diff --git a/spring-boot-project/spring-boot/src/test/resources/profilenegation-local-active-profiles.yml b/spring-boot-project/spring-boot/src/test/resources/profilenegation-local-active-profiles.yml deleted file mode 100644 index 3e6db956ee..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/profilenegation-local-active-profiles.yml +++ /dev/null @@ -1,10 +0,0 @@ -spring: - profiles: - active: - - B ---- - -spring.profiles: "!A" - -version: NOT A - diff --git a/spring-boot-project/spring-boot/src/test/resources/profilenegation.yml b/spring-boot-project/spring-boot/src/test/resources/profilenegation.yml deleted file mode 100644 index 31c3d64695..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/profilenegation.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -spring.profiles: "!A" - -version: NOT A diff --git a/spring-boot-project/spring-boot/src/test/resources/specificfile-specificprofile.properties b/spring-boot-project/spring-boot/src/test/resources/specificfile-specificprofile.properties deleted file mode 100644 index e5e37d3859..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/specificfile-specificprofile.properties +++ /dev/null @@ -1 +0,0 @@ -my.property=fromspecificpropertiesfile diff --git a/spring-boot-project/spring-boot/src/test/resources/testnegatedprofiles.yml b/spring-boot-project/spring-boot/src/test/resources/testnegatedprofiles.yml deleted file mode 100644 index 79e1a4367d..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/testnegatedprofiles.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -my: - property: fromyamlfile - other: notempty ---- -spring: - profiles: dev -my: - property: fromdevprofile ---- -spring: - profiles: other -my: - property: fromotherprofile ---- -spring: - profiles: "!other" -my: - property: fromnototherprofile - notother: foo diff --git a/spring-boot-project/spring-boot/src/test/resources/testprofileexpression.yml b/spring-boot-project/spring-boot/src/test/resources/testprofileexpression.yml deleted file mode 100644 index d43f9b0523..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/testprofileexpression.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -my: - property: fromyamlfile ---- -spring: - profiles: dev & other -my: - property: devandother ---- -spring: - profiles: (dev | other) & another -my: - property: devorotherandanother ---- diff --git a/spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml b/spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml deleted file mode 100644 index f74b31e078..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -my: - property: fromyamlfile - other: notempty ---- -spring: - profiles: thedefault -my: - property: fromdefaultprofile ---- -spring: - profiles: other -my: - property: fromotherprofile diff --git a/spring-boot-project/spring-boot/src/test/resources/testprofilesempty.yml b/spring-boot-project/spring-boot/src/test/resources/testprofilesempty.yml deleted file mode 100644 index 40990865fb..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/testprofilesempty.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -my: - property: fromyamlfile - other: notempty ---- -spring: - profiles: -my: - property: fromemptyprofile ---- -spring: - profiles: other -my: - property: fromotherprofile diff --git a/spring-boot-project/spring-boot/src/test/resources/testsetprofiles.yml b/spring-boot-project/spring-boot/src/test/resources/testsetprofiles.yml deleted file mode 100644 index 48c5f02a84..0000000000 --- a/spring-boot-project/spring-boot/src/test/resources/testsetprofiles.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -spring: - profiles: - active: dev -my: - property: fromyamlfile ---- -spring: - profiles: dev -my: - property: fromdevprofile