You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "John Casey (JIRA)" <ji...@codehaus.org> on 2007/03/17 06:26:37 UTC

[jira] Updated: (MASSEMBLY-191) IncompatibleClassChangeError thrown when invoking the plugin

     [ http://jira.codehaus.org/browse/MASSEMBLY-191?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Casey updated MASSEMBLY-191:
---------------------------------

    Fix Version/s: 2.2

> IncompatibleClassChangeError thrown when invoking the plugin
> ------------------------------------------------------------
>
>                 Key: MASSEMBLY-191
>                 URL: http://jira.codehaus.org/browse/MASSEMBLY-191
>             Project: Maven 2.x Assembly Plugin
>          Issue Type: Bug
>    Affects Versions: 2.2
>         Environment: Assembly 2.2: trunk (20050316)
>            Reporter: Stephane Nicoll
>         Assigned To: John Casey
>             Fix For: 2.2
>
>
> I have a very basic assembly file that throws the following exception;
> {noformat}
> java.lang.IncompatibleClassChangeError
>         at org.apache.maven.plugin.assembly.io.DefaultAssemblyReader.readAssemblies(DefaultAssemblyReader.java:74)
>         at org.apache.maven.plugin.assembly.mojos.AbstractAssemblyMojo.execute(AbstractAssemblyMojo.java:253)
>         at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:475)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:454)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140)
>         at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
>         at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
>         at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
>         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>         at java.lang.reflect.Method.invoke(Method.java:585)
>         at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
>         at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
>         at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
>         at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
> {noformat}
> The assembly is the following
> {code:xml}
> <assembly>
>     <id>bundle</id>
>     <formats>
>         <format>zip</format>
>     </formats>
>     <includeBaseDirectory>false</includeBaseDirectory>
>     <fileSets>
>         <fileSet>
>             <directory>src/main/ant</directory>
>             <outputDirectory></outputDirectory>
>             <includes>
>                 <include>build.xml</include>
>             </includes>
>         </fileSet>
>     </fileSets>
>     
>     <files>
>         <file>
>             <source>target/${artifactId}-${version}.jar</source>
>             <outputDirectory>runner-lib</outputDirectory>
>         </file>
>     </files>
> </assembly>
> {code}
> My profile is as follows
> {code:xml}
>      <profile>
>             <id>bundle</id>
>             <activation>
>                 <property>
>                     <name>performRelease</name>
>                     <value>true</value>
>                 </property>
>             </activation>
>             <build>
>                 <plugins>
>                     <plugin>
>                         <groupId>org.apache.maven.plugins</groupId>
>                         <artifactId>maven-assembly-plugin</artifactId>
>                         <version>2.2-SNAPSHOT</version>
>                         <configuration>
>                             <descriptors>
>                                 <descriptor>src/assembly/bundle.xml</descriptor>
>                             </descriptors>
>                         </configuration>
>                         <executions>
>                             <execution>
>                                 <id>bundle-samples</id>
>                                 <phase>package</phase>
>                                 <goals>
>                                     <goal>attached</goal>
>                                 </goals>
>                             </execution>
>                         </executions>
>                     </plugin>
>                 </plugins>
>             </build>
>         </profile>
> {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira