|
5 | 5 | <parent> |
6 | 6 | <groupId>org.springframework.boot</groupId> |
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>3.3.4</version> |
| 8 | + <version>3.3.5</version> |
9 | 9 | <relativePath/> |
10 | 10 | </parent> |
11 | 11 |
|
|
98 | 98 | <dependency> |
99 | 99 | <groupId>org.wiremock.integrations</groupId> |
100 | 100 | <artifactId>wiremock-spring-boot</artifactId> |
101 | | - <version>3.0.2</version> |
| 101 | + <version>3.0.3</version> |
102 | 102 | <scope>test</scope> |
103 | 103 | </dependency> |
104 | 104 | </dependencies> |
105 | 105 |
|
106 | 106 | <build> |
107 | | - <pluginManagement> |
108 | | - <plugins> |
109 | | - <plugin> |
110 | | - <groupId>org.apache.maven.plugins</groupId> |
111 | | - <artifactId>maven-javadoc-plugin</artifactId> |
112 | | - <configuration> |
113 | | - <additionalDependencies> |
114 | | - <dependency> |
115 | | - <groupId>com.google.code.findbugs</groupId> |
116 | | - <artifactId>jsr305</artifactId> |
117 | | - <version>3.0.2</version> |
118 | | - </dependency> |
119 | | - </additionalDependencies> |
120 | | - <failOnWarnings>true</failOnWarnings> |
121 | | - <links> |
122 | | - <link>https://docs.spring.io/spring-batch/docs/${spring-batch.version}/api/</link> |
123 | | - <link>https://docs.spring.io/spring-framework/docs/${spring-framework.version}/api/</link> |
124 | | - </links> |
125 | | - </configuration> |
126 | | - </plugin> |
127 | | - </plugins> |
128 | | - </pluginManagement> |
129 | 107 | <plugins> |
130 | 108 | <plugin> |
131 | 109 | <groupId>com.mycila</groupId> |
@@ -178,6 +156,44 @@ limitations under the License. |
178 | 156 | </execution> |
179 | 157 | </executions> |
180 | 158 | </plugin> |
| 159 | + <plugin> |
| 160 | + <groupId>org.apache.maven.plugins</groupId> |
| 161 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 162 | + <configuration> |
| 163 | + <additionalDependencies> |
| 164 | + <dependency> |
| 165 | + <groupId>com.google.code.findbugs</groupId> |
| 166 | + <artifactId>jsr305</artifactId> |
| 167 | + <version>3.0.2</version> |
| 168 | + </dependency> |
| 169 | + </additionalDependencies> |
| 170 | + <failOnWarnings>true</failOnWarnings> |
| 171 | + <links> |
| 172 | + <link>https://docs.spring.io/spring-batch/docs/${spring-batch.version}/api/</link> |
| 173 | + <link>https://docs.spring.io/spring-framework/docs/${spring-framework.version}/api/</link> |
| 174 | + </links> |
| 175 | + </configuration> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <id>attach-javadoc</id> |
| 179 | + <goals> |
| 180 | + <goal>jar</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-source-plugin</artifactId> |
| 188 | + <executions> |
| 189 | + <execution> |
| 190 | + <id>attach-source</id> |
| 191 | + <goals> |
| 192 | + <goal>jar-no-fork</goal> |
| 193 | + </goals> |
| 194 | + </execution> |
| 195 | + </executions> |
| 196 | + </plugin> |
181 | 197 | <plugin> |
182 | 198 | <groupId>org.codehaus.mojo</groupId> |
183 | 199 | <artifactId>flatten-maven-plugin</artifactId> |
@@ -207,48 +223,4 @@ limitations under the License. |
207 | 223 | </plugin> |
208 | 224 | </plugins> |
209 | 225 | </build> |
210 | | - |
211 | | - <profiles> |
212 | | - <profile> |
213 | | - <id>release</id> |
214 | | - <build> |
215 | | - <plugins> |
216 | | - <plugin> |
217 | | - <groupId>org.apache.maven.plugins</groupId> |
218 | | - <artifactId>maven-javadoc-plugin</artifactId> |
219 | | - <executions> |
220 | | - <execution> |
221 | | - <id>attach-javadoc</id> |
222 | | - <goals> |
223 | | - <goal>jar</goal> |
224 | | - </goals> |
225 | | - </execution> |
226 | | - </executions> |
227 | | - </plugin> |
228 | | - <plugin> |
229 | | - <groupId>org.apache.maven.plugins</groupId> |
230 | | - <artifactId>maven-source-plugin</artifactId> |
231 | | - <executions> |
232 | | - <execution> |
233 | | - <id>attach-source</id> |
234 | | - <goals> |
235 | | - <goal>jar-no-fork</goal> |
236 | | - </goals> |
237 | | - </execution> |
238 | | - </executions> |
239 | | - </plugin> |
240 | | - </plugins> |
241 | | - </build> |
242 | | - </profile> |
243 | | - <profile> |
244 | | - <id>spring-milestone</id> |
245 | | - <repositories> |
246 | | - <repository> |
247 | | - <id>spring-milestone</id> |
248 | | - <name>Spring Milestones</name> |
249 | | - <url>https://repo.spring.io/milestone</url> |
250 | | - </repository> |
251 | | - </repositories> |
252 | | - </profile> |
253 | | - </profiles> |
254 | 226 | </project> |
0 commit comments