This is an automated email from the ASF dual-hosted git repository. cshannon pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new bc932655b3 Disable failsafe plugin in start and compactor modules (#3829) bc932655b3 is described below commit bc932655b38a18c698fd00156a61d2b4cff05cec Author: Christopher L. Shannon <christopher.l.shan...@gmail.com> AuthorDate: Tue Oct 10 09:05:25 2023 -0400 Disable failsafe plugin in start and compactor modules (#3829) After the changes in #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. --- server/compactor/pom.xml | 13 +++++++++++++ start/pom.xml | 7 +++++++ 2 files changed, 20 insertions(+) diff --git a/server/compactor/pom.xml b/server/compactor/pom.xml index a65974abe0..3696cab2c7 100644 --- a/server/compactor/pom.xml +++ b/server/compactor/pom.xml @@ -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> diff --git a/start/pom.xml b/start/pom.xml index ad83eaed4f..9ead0357da 100644 --- a/start/pom.xml +++ b/start/pom.xml @@ -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>