Skip to content

Commit ae941f3

Browse files
seickeaaronziCopilot
authored
Bump org.springframework.boot:spring-boot-starter-parent from 3.5.4 t… (#928)
* Bump org.springframework.boot:spring-boot-starter-parent from 3.5.4 to 3.5.8 * Fixes eof * Fixes eof * Tries fixing javadoc problem by adding explicit encoding config in pom.xml * Adds the same fix to docker build profile * Adds locale to workflow * Adds javadoc to search feature * Adds encoding setting * skips javadoc for http module * Tries to solve the problem with a global plugin config * adds the config to the build plugins as well * Updates javadoc version * simplifies plugin config * Update pom.xml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Aaron Zielstorff <aaron.zielstorff@iese.fraunhofer.de> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 55dc9c9 commit ae941f3

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

pom.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.4</version>
9+
<version>3.5.8</version>
1010
<relativePath />
1111
</parent>
1212
<groupId>org.eclipse.digitaltwin.basyx</groupId>
@@ -156,6 +156,10 @@
156156
</execution>
157157
</executions>
158158
</plugin>
159+
<plugin>
160+
<groupId>org.apache.maven.plugins</groupId>
161+
<artifactId>maven-javadoc-plugin</artifactId>
162+
</plugin>
159163
</plugins>
160164
<pluginManagement>
161165
<plugins>
@@ -267,6 +271,16 @@
267271
</execution>
268272
</executions>
269273
</plugin>
274+
<plugin>
275+
<groupId>org.apache.maven.plugins</groupId>
276+
<artifactId>maven-javadoc-plugin</artifactId>
277+
<version>3.12.0</version>
278+
<configuration>
279+
<encoding>UTF-8</encoding>
280+
<docencoding>UTF-8</docencoding>
281+
<charset>UTF-8</charset>
282+
</configuration>
283+
</plugin>
270284
<plugin>
271285
<groupId>org.apache.maven.plugins</groupId>
272286
<artifactId>maven-surefire-plugin</artifactId>
@@ -1587,4 +1601,4 @@
15871601
</build>
15881602
</profile>
15891603
</profiles>
1590-
</project>
1604+
</project>

0 commit comments

Comments
 (0)