hernanDatgDev commented on issue #4892:
URL: https://github.com/apache/camel-k/issues/4892#issuecomment-1793076349

   Seems that the maven/settings file being copied might be incomplete and 
different to what camel-k was installed with.
   maven/settings in builder pod is the following:
   ```
   <?xml version="1.0" encoding="UTF-8"?>
   <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 
https://maven.apache.org/xsd/settings-1.0.0.xsd";>
     <localRepository></localRepository>
     <servers></servers>
     <profiles>
       <profile>
         <id>camel-k</id>
         <activation>
           <activeByDefault>true</activeByDefault>
         </activation>
         <repositories>
           <repository>
             <id>central</id>
             <url>https://repo.maven.apache.org/maven2</url>
             <snapshots>
               <enabled>false</enabled>
               <checksumPolicy>fail</checksumPolicy>
             </snapshots>
             <releases>
               <enabled>true</enabled>
               <checksumPolicy>fail</checksumPolicy>
             </releases>
           </repository>
         </repositories>
         <pluginRepositories>
           <pluginRepository>
             <id>central</id>
             <url>https://repo.maven.apache.org/maven2</url>
             <snapshots>
               <enabled>false</enabled>
               <checksumPolicy>fail</checksumPolicy>
             </snapshots>
             <releases>
               <enabled>true</enabled>
               <checksumPolicy>fail</checksumPolicy>
             </releases>
           </pluginRepository>
         </pluginRepositories>
       </profile>
     </profiles>
     <proxies></proxies>
     <mirrors></mirrors>
   
     <!-- log ends here; assuming end of file with </settings> -->
     </settings>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to