> Hi Christian !
>
> Thanks a lot for your answer, I'll check that out.
>
> However, I'm fairly new to maven-based projects so I want to know what
> do I have to change in the pom.xml in order to use the current snapshot.
>
>
> Thanks.
You have to add the codehaus snapshot repository to your
pom.xml like this:
<pluginRepositories>
<pluginRepository>
<id>codehaus.snapshots</id>
<url>http://snapshots.maven.codehaus.org/maven2</url>
</pluginRepository>
</pluginRepositories>
Then you have to add a <version> tag for 2.0.1-SNAPSHOT to
the plugin configuration:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.0.1-SNAPSHOT</version>
[..]
</plugin>
</plugins>
</build>
Kind regards
Christian
--
Christian Kaltepoth <[EMAIL PROTECTED]>
GnuPG Key: http://www.kaltepoth.de/gnupg/pubkey.asc
Fingerprint: 9F04 0A94 CC40 C3EF 1A69 B2BB 51F4 4C84 BEB6 F127
---------------------------------------------------------------------
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email