Skip to content

Commit f8430d8

Browse files
committed
fix: upgrade to cargo-maven3
Application couldn't start with previous setup. Plus, maven3 is the preferred way of using cargo now. See https://codehaus-cargo.github.io/cargo/Maven+3+Plugin.html Relevant section: Reg. Lifetime of our Maven 2 plugin " Please be aware that the Maven 2 / Maven 3 plugin of Codehaus Cargo has been retired with our version 1.9.0 and has been superseded by a Maven 3 only plugin. "
1 parent ca6ab5f commit f8430d8

File tree

1 file changed

+3
-4
lines changed
  • spring-web-modules/spring-thymeleaf

1 file changed

+3
-4
lines changed

spring-web-modules/spring-thymeleaf/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,9 @@
115115
</plugin>
116116
<plugin>
117117
<groupId>org.codehaus.cargo</groupId>
118-
<artifactId>cargo-maven2-plugin</artifactId>
119-
<version>${cargo-maven2-plugin.version}</version>
118+
<artifactId>cargo-maven3-plugin</artifactId>
119+
<version>${cargo-maven3-plugin.version}</version>
120120
<configuration>
121-
<wait>true</wait>
122121
<container>
123122
<containerId>jetty9x</containerId>
124123
<type>embedded</type>
@@ -143,7 +142,7 @@
143142
<javax.validation-version>2.0.1.Final</javax.validation-version>
144143
<hibernate-validator.version>6.0.11.Final</hibernate-validator.version>
145144
<!-- Maven plugins -->
146-
<cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>
145+
<cargo-maven3-plugin.version>1.9.9</cargo-maven3-plugin.version>
147146
</properties>
148147

149148
</project>

0 commit comments

Comments
 (0)