This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
commit 954ebeed54e171aed6f4427949dcddfff2af0732 Author: Charles Douillard <[email protected]> AuthorDate: Sat Jul 19 13:11:40 2025 +0200 Replace maven-plugin-testing-harness dependency by maven-testing --- pom.xml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index ddfd6be..6de0f8c 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,6 @@ under the License. <asmVersion>9.8</asmVersion> <guiceVersion>6.0.0</guiceVersion> <mockitoVersion>5.18.0</mockitoVersion> - <mavenPluginTestingHarnessVersion>4.0.0-beta-4</mavenPluginTestingHarnessVersion> <eclipseCompilerVersion>3.42.0</eclipseCompilerVersion> <version.maven-plugin-tools-3.x>3.13.1</version.maven-plugin-tools-3.x> <version.maven-plugin-tools>4.0.0-beta-1</version.maven-plugin-tools> @@ -147,6 +146,12 @@ under the License. <version>${mavenVersion}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-testing</artifactId> + <version>${mavenVersion}</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-xml</artifactId> @@ -159,12 +164,6 @@ under the License. <version>${guiceVersion}</version> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.maven.plugin-testing</groupId> - <artifactId>maven-plugin-testing-harness</artifactId> - <version>${mavenPluginTestingHarnessVersion}</version> - <scope>test</scope> - </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId>
