@@ -55,6 +55,7 @@ void libraryModulesAreIncludedInDependencyManagementOfGeneratedPom() throws IOEx
5555 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
5656 out .println ("plugins {" );
5757 out .println (" id 'org.springframework.boot.bom'" );
58+ out .println (" id 'org.springframework.boot.deployed'" );
5859 out .println ("}" );
5960 out .println ("bom {" );
6061 out .println (" library('ActiveMQ', '5.15.10') {" );
@@ -91,6 +92,7 @@ void libraryPluginsAreIncludedInPluginManagementOfGeneratedPom() throws IOExcept
9192 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
9293 out .println ("plugins {" );
9394 out .println (" id 'org.springframework.boot.bom'" );
95+ out .println (" id 'org.springframework.boot.deployed'" );
9496 out .println ("}" );
9597 out .println ("bom {" );
9698 out .println (" library('Flyway', '6.0.8') {" );
@@ -118,6 +120,7 @@ void libraryImportsAreIncludedInDependencyManagementOfGeneratedPom() throws Exce
118120 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
119121 out .println ("plugins {" );
120122 out .println (" id 'org.springframework.boot.bom'" );
123+ out .println (" id 'org.springframework.boot.deployed'" );
121124 out .println ("}" );
122125 out .println ("bom {" );
123126 out .println (" library('Jackson Bom', '2.10.0') {" );
@@ -144,6 +147,7 @@ void moduleExclusionsAreIncludedInDependencyManagementOfGeneratedPom() throws IO
144147 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
145148 out .println ("plugins {" );
146149 out .println (" id 'org.springframework.boot.bom'" );
150+ out .println (" id 'org.springframework.boot.deployed'" );
147151 out .println ("}" );
148152 out .println ("bom {" );
149153 out .println (" library('MySQL', '8.0.18') {" );
@@ -177,6 +181,7 @@ void moduleTypesAreIncludedInDependencyManagementOfGeneratedPom() throws IOExcep
177181 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
178182 out .println ("plugins {" );
179183 out .println (" id 'org.springframework.boot.bom'" );
184+ out .println (" id 'org.springframework.boot.deployed'" );
180185 out .println ("}" );
181186 out .println ("bom {" );
182187 out .println (" library('Elasticsearch', '7.15.2') {" );
@@ -208,6 +213,7 @@ void moduleClassifiersAreIncludedInDependencyManagementOfGeneratedPom() throws I
208213 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
209214 out .println ("plugins {" );
210215 out .println (" id 'org.springframework.boot.bom'" );
216+ out .println (" id 'org.springframework.boot.deployed'" );
211217 out .println ("}" );
212218 out .println ("bom {" );
213219 out .println (" library('Kafka', '2.7.2') {" );
@@ -266,6 +272,7 @@ void libraryNamedSpringBootHasNoVersionProperty() throws IOException {
266272 try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
267273 out .println ("plugins {" );
268274 out .println (" id 'org.springframework.boot.bom'" );
275+ out .println (" id 'org.springframework.boot.deployed'" );
269276 out .println ("}" );
270277 out .println ("bom {" );
271278 out .println (" library('Spring Boot', '1.2.3') {" );
0 commit comments