This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a93a7d598 Allow building with maven 4 (#1038)
6a93a7d598 is described below

commit 6a93a7d598efd5c8cd80b015593e0e6ef18794ac
Author: Guillaume Nodet <[email protected]>
AuthorDate: Sat Dec 10 02:48:38 2022 +0100

    Allow building with maven 4 (#1038)
    
    * Upgrade maven-remote-resources-plugin
    
    * Disable checksum validation
    
    Checksums are computed during deploy, but not installed, so when the local 
repository is used as a remote repository, checksums validation need to be 
disabled
---
 parent/pom.xml                                  | 2 +-
 systests/wsdl_maven/codegen/src/it/settings.xml | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index ecbc876adc..8fb1f91698 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -568,7 +568,7 @@
             </plugin>
             <plugin>
                 <artifactId>maven-remote-resources-plugin</artifactId>
-                <version>1.7.0</version>
+                <version>3.0.0</version>
                 <dependencies>
                     <dependency>
                         <groupId>org.apache.cxf.build-utils</groupId>
diff --git a/systests/wsdl_maven/codegen/src/it/settings.xml 
b/systests/wsdl_maven/codegen/src/it/settings.xml
index 8b41c38c29..b43fd536d6 100644
--- a/systests/wsdl_maven/codegen/src/it/settings.xml
+++ b/systests/wsdl_maven/codegen/src/it/settings.xml
@@ -30,9 +30,11 @@ under the License.
                     <url>@localRepositoryUrl@</url>
                     <releases>
                         <enabled>true</enabled>
+                        <checksumPolicy>ignore</checksumPolicy>
                     </releases>
                     <snapshots>
                         <enabled>true</enabled>
+                        <checksumPolicy>ignore</checksumPolicy>
                     </snapshots>
                 </repository>
             </repositories>
@@ -42,9 +44,11 @@ under the License.
                     <url>@localRepositoryUrl@</url>
                     <releases>
                         <enabled>true</enabled>
+                        <checksumPolicy>ignore</checksumPolicy>
                     </releases>
                     <snapshots>
                         <enabled>true</enabled>
+                        <checksumPolicy>ignore</checksumPolicy>
                     </snapshots>
                 </pluginRepository>
             </pluginRepositories>

Reply via email to