zhfeng commented on issue #4258:
URL: https://github.com/apache/camel-quarkus/issues/4258#issuecomment-1306734728

   I tried to add the following plugin to unpack thest files:
   ```xml
        <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-dependency-plugin</artifactId>
                   <executions>
                       <execution>
                           <id>unpack</id>
                           <phase>generate-sources</phase>
                           <goals>
                               <goal>unpack</goal>
                           </goals>
                           <configuration>
                               <artifactItems>
                                   <artifactItem>
                                        
<groupId>org.apache.camel.quarkus</groupId>
                                        
<artifactId>camel-quarkus-integration-test-xml</artifactId>
                                       
<outputDirectory>src/main/resources</outputDirectory>
                                       <includes>**\/*.xsl</includes>
                                   </artifactItem>
                                   <artifactItem>
                                        
<groupId>org.apache.camel.quarkus</groupId>
                                        
<artifactId>camel-quarkus-integration-test-xml</artifactId>
                                        <type>test-jar</type>
                                        <classifier>tests</classifier>
                                        
<outputDirectory>src/test/resources</outputDirectory>
                                        <includes>**\/*.xml</includes>
                                   </artifactItem>
                               </artifactItems>
                           </configuration>
                       </execution>
                   </executions>
          </plugin>
   ```
   
   @ppalaga @zbendhiba Do you think this is a right way? I think can add this 
change in `src/main/resources/xslt/camel/test-pom.xsl`.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to