This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch owb_2.0.x in repository https://gitbox.apache.org/repos/asf/openwebbeans.git
commit cdc9a57938125e47cf586c5978b0d0aff0f171c5 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Fri May 9 15:21:52 2025 +0200 fix: maven dependency to Gradle not found and NPE in previous plugin version --- pom.xml | 2 +- webbeans-gradle/pom.xml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1f7dcc03d..00c01c65d 100644 --- a/pom.xml +++ b/pom.xml @@ -298,7 +298,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> - <version>1.5</version> + <version>3.3.0</version> <executions> <execution> <goals> diff --git a/webbeans-gradle/pom.xml b/webbeans-gradle/pom.xml index 428480832..5c528d67e 100644 --- a/webbeans-gradle/pom.xml +++ b/webbeans-gradle/pom.xml @@ -70,5 +70,9 @@ <id>gradle-m2</id> <url>https://plugins.gradle.org/m2/</url> </repository> + <repository> + <id>gradle-releases</id> + <url>https://repo.gradle.org/gradle/libs-releases/</url> + </repository> </repositories> </project>
