This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch deps2 in repository https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git
commit 12cd906e0d071c956897959c8aafe6f8f55bd69d Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Fri Jan 16 08:29:30 2026 -0500 add Maven dependencies --- pom.xml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pom.xml b/pom.xml index 309c1dc..a43eb67 100644 --- a/pom.xml +++ b/pom.xml @@ -113,6 +113,36 @@ under the License. <version>${mavenVersion}</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + <version>${mavenVersion}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>${mavenVersion}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + <version>${mavenVersion}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver</artifactId> + <version>${resolverVersion}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-spi</artifactId> + <version>${resolverVersion}</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-http</artifactId>
