@@ -55,6 +55,7 @@ void libraryModulesAreIncludedInDependencyManagementOfGeneratedPom() throws IOEx
55
55
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
56
56
out .println ("plugins {" );
57
57
out .println (" id 'org.springframework.boot.bom'" );
58
+ out .println (" id 'org.springframework.boot.deployed'" );
58
59
out .println ("}" );
59
60
out .println ("bom {" );
60
61
out .println (" library('ActiveMQ', '5.15.10') {" );
@@ -91,6 +92,7 @@ void libraryPluginsAreIncludedInPluginManagementOfGeneratedPom() throws IOExcept
91
92
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
92
93
out .println ("plugins {" );
93
94
out .println (" id 'org.springframework.boot.bom'" );
95
+ out .println (" id 'org.springframework.boot.deployed'" );
94
96
out .println ("}" );
95
97
out .println ("bom {" );
96
98
out .println (" library('Flyway', '6.0.8') {" );
@@ -118,6 +120,7 @@ void libraryImportsAreIncludedInDependencyManagementOfGeneratedPom() throws Exce
118
120
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
119
121
out .println ("plugins {" );
120
122
out .println (" id 'org.springframework.boot.bom'" );
123
+ out .println (" id 'org.springframework.boot.deployed'" );
121
124
out .println ("}" );
122
125
out .println ("bom {" );
123
126
out .println (" library('Jackson Bom', '2.10.0') {" );
@@ -144,6 +147,7 @@ void moduleExclusionsAreIncludedInDependencyManagementOfGeneratedPom() throws IO
144
147
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
145
148
out .println ("plugins {" );
146
149
out .println (" id 'org.springframework.boot.bom'" );
150
+ out .println (" id 'org.springframework.boot.deployed'" );
147
151
out .println ("}" );
148
152
out .println ("bom {" );
149
153
out .println (" library('MySQL', '8.0.18') {" );
@@ -177,6 +181,7 @@ void moduleTypesAreIncludedInDependencyManagementOfGeneratedPom() throws IOExcep
177
181
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
178
182
out .println ("plugins {" );
179
183
out .println (" id 'org.springframework.boot.bom'" );
184
+ out .println (" id 'org.springframework.boot.deployed'" );
180
185
out .println ("}" );
181
186
out .println ("bom {" );
182
187
out .println (" library('Elasticsearch', '7.15.2') {" );
@@ -208,6 +213,7 @@ void moduleClassifiersAreIncludedInDependencyManagementOfGeneratedPom() throws I
208
213
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
209
214
out .println ("plugins {" );
210
215
out .println (" id 'org.springframework.boot.bom'" );
216
+ out .println (" id 'org.springframework.boot.deployed'" );
211
217
out .println ("}" );
212
218
out .println ("bom {" );
213
219
out .println (" library('Kafka', '2.7.2') {" );
@@ -266,6 +272,7 @@ void libraryNamedSpringBootHasNoVersionProperty() throws IOException {
266
272
try (PrintWriter out = new PrintWriter (new FileWriter (this .buildFile ))) {
267
273
out .println ("plugins {" );
268
274
out .println (" id 'org.springframework.boot.bom'" );
275
+ out .println (" id 'org.springframework.boot.deployed'" );
269
276
out .println ("}" );
270
277
out .println ("bom {" );
271
278
out .println (" library('Spring Boot', '1.2.3') {" );
0 commit comments