Anyone have any ideas?
I also tried to use the build-helper but that only seems to get *.java
files:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/target/generated-sources</source>
</sources>
<artifacts>
<artifact>
<file>*</file>
<type>*</type>
<!--<classifier>optional</classifier>-->
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
On 6/11/07, Mick Knutson <[EMAIL PROTECTED]> wrote:
I want my resources to go into ./WEB-INF/* not ./WEB-INF/classes/*
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>${basedir}/target/generated-sources</directory>
<targetPath>../</targetPath>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
<filtering>true</filtering>
</resource>
</resources>
The above did not seem to work...
--
---
Thanks,
Mick Knutson
http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---
--
---
Thanks,
Mick Knutson
http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---