okay that did the trick. Thanx for pointing this out.
I did checkin the changes. Could you verify that it is
working?
Jonathan Gallimore wrote:
Daniel,
I tried moving your .properties files from src/main/java to
src/main/resources (Am I right in thinking that is where Maven normally
expects non Java files?), which didn't initially work, I think because
there is a copy resources filter in the plugin's POM. Changing the top
of the POM like this did the trick:
<build>
<resources>
<resource>
<directory>.</directory>
<includes>
<include>plugin.xml</include>
<include>about.html</include>
<include>plugin.properties</include>
<include>plugin_*.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>META-INF</directory>
<includes>
<include>MANIFEST.MF</include>
</includes>
</resource>
<resource>
<targetPath>lib</targetPath>
<directory>lib</directory>
<includes>
<include>*.jar</include>
</includes>
</resource>
</resources>
Note the second resource.
Cheers
Jon