You shouldn't need to configure the resource plugin at all, just the following will work:

<resources>
  <resource>
    <directory>src/main/java</directory>
    <includes>
      <include>**/*.xml</include>
    </includes>
  </resource>
</resources>

Cheers,
Brett

On 18/12/2008, at 5:19 PM, zorro2b wrote:


I am converting a project to use Maven. I have got it to compile but the tests are failing because there are xml files in with the java source that need to be copied over with the classes. I don't want to move these into the
resources dir, so I followed the example here:
http://maven.apache.org/plugins/maven-resources-plugin/examples/copy-resources.html

but I get the error "'copy-resources' was specified in an execution, but not
found in the plugin"

so I have tried changing the goal to "resources" as well as removing the
goals section completely. Both get rid of the error, but no files are
copied.

Does anyone have a working config they could share?

Here is my current config:
          <plugin>
       <artifactId>maven-resources-plugin</artifactId>
       <executions>
         <execution>
           <id>copy-resources</id>
           <phase>process-resources</phase>

                        <goals>
                                <goal>resources</goal>
                        </goals>
           <configuration>
<outputDirectory>${basedir}/target/classes</ outputDirectory>
             <resources>
               <resource>
                 <directory>src/main/java</directory>
                 <includes>
                                        <include>**/*.xml</include>
                                  </includes>
               </resource>
             </resources>
           </configuration>
         </execution>
       </executions>
     </plugin>

--
View this message in context: 
http://www.nabble.com/How-to-configure-resources-plugin-to-copy-extra-files-tp21067611p21067611.html
Sent from the Maven - Users mailing list archive at Nabble.com.


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


--
Brett Porter
[email protected]
http://blogs.exist.com/bporter/


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

Reply via email to