Hello

Could we configure mapper in maven-resources-plugin?

I try without success the following:
<plugin>
   <artifactId>maven-resources-plugin</artifactId>
   <version>2.4.2</version>
   <executions>
      <execution>
         <id>copy-with-mapper</id>
         <phase>pre-integration-test</phase>
         <configuration>
            <outputDirectory>${project.build.directory}</outputDirectory>
               <resources>
                  <resource>
                     <directory>src/test/config</directory>
                     <mapper type="glob" from="*.cdf-test" to="*.cfg"/>
                  </resource>
               </resources>
            </configuration>
         <goals>
            <goal>copy-resources</goal>
         </goals>
      </execution>
   </executions>
</plugin>

Regards,

Arnaud.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to