|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [mojo-dev] [jira] (MRMIC-33) Crash with NoSuchMethod... Jelmer Kuperus (JIRA)
- [mojo-dev] [jira] (MRMIC-33) Crash with NoSuchM... Jelmer Kuperus (JIRA)
- [mojo-dev] [jira] (MRMIC-33) Crash with NoSuchM... Russell Gold (JIRA)

I have the same problem using maven 3.0.4
I worked around it like this :
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rmic-maven-plugin</artifactId>
<version>1.2.0</version>
<dependencies>
<!-- workaround for http://jira.codehaus.org/browse/MRMIC-33 -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0.9</version>
</dependency>
</dependencies>
</plugin>