I use xmlbeans plugin in my maven project. This is the configuration I used:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<executions>
<execution>
<id>Test</id>
<inherited>true</inherited>
<goals>
<goal>xmlbeans-test</goal>
</goals>
<configuration>
<outputJar>target/test.jar</outputJar>
</configuration>
</execution>
</executions>
</plugin>
When I run "mvn xmlbeans:xmlbeans-test", the test.jar wasn't created. It
seems that the configuration element doesn't work here.
Does anyone know this problem?
thanks
--
View this message in context:
http://www.nabble.com/How-to-generate-jar-file-from-xmlbeans--tp20375498p20375498.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]