Skip to content

Commit

Permalink
Disable failsafe plugin in start and compactor modules (apache#3829)
Browse files Browse the repository at this point in the history
After the changes in apache#3817 junit is no longer a dependency for the start/compactor
modules and this causes errors when running int tests as failsafe gives
an error because Junit is not a dependency.

Adding back junit as a dependency also fails as there are no unit tests
to run currently so this disables the failsafe plugin inside the start/compactor
module. It can be re-enabled in the future if tests are added.
  • Loading branch information
cshannon authored Oct 10, 2023
1 parent 61dc5ad commit bc93265
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions server/compactor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,17 @@
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipITs>true</skipITs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
7 changes: 7 additions & 0 deletions start/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@
<reuseForks>false</reuseForks>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skipITs>true</skipITs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down

0 comments on commit bc93265

Please sign in to comment.