Skip to content

Commit

Permalink
fix(deps): citrus release 4.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Timon Borter <[email protected]>
  • Loading branch information
bbortt committed Nov 18, 2024
1 parent d8b08bc commit 74daffc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
<maven.nexus-staging.plugin.version>1.6.13</maven.nexus-staging.plugin.version>

<lombok.version>1.18.34</lombok.version>
<citrus.version>4.3.3</citrus.version>
<citrus.version>4.4.0</citrus.version>

<spring-boot.version>3.3.4</spring-boot.version>
<spring.version>6.3.4</spring.version>
<spring-boot.version>3.3.5</spring-boot.version>
<spring.version>6.3.5</spring.version>
<testng.version>7.10.2</testng.version>
<wsdl4j.version>1.6.3</wsdl4j.version>
<xerces.version>2.12.2</xerces.version>
<xstream.version>1.4.20</xstream.version>

<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/3.3.0 -->
<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-log4j2/3.3.5 -->
<log4j2.version>2.23.1</log4j2.version>
<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging/3.3.0 -->
<logback.classic.version>1.5.6</logback.classic.version>
<!-- see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging/3.3.5 -->
<logback.classic.version>1.5.11</logback.classic.version>

<node.version>v22.4.1</node.version>
<npm.version>10.8.1</npm.version>
Expand Down Expand Up @@ -216,7 +216,7 @@
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>5.2.0</version>
<version>5.2.2</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -368,7 +368,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.5.2</version>
<configuration>
<excludes>
<exclude>**/*IT.java</exclude>
Expand All @@ -382,7 +382,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
<version>3.5.2</version>
<configuration>
<failIfNoTests>false</failIfNoTests>
</configuration>
Expand Down
22 changes: 21 additions & 1 deletion simulator-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,35 @@
</plugins>
</pluginManagement>

<!-- Do not deploy sample modules to Maven central -->
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<!-- Do not deploy sample modules to Maven central -->
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng</artifactId>
<version>3.5.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 74daffc

Please sign in to comment.