1 Reply Latest reply on Jun 3, 2008 7:02 PM by alrubinger

    Plugin issues

    brian.stansberry

      Been seeing some problems with the plugin:

      [bes@besdev trunk]$ java -jar plugin/target/jboss-ejb3-plugin-0.1.0-SNAPSHOT-installer.jar $JBOSS_HOME
      Exception in thread "main" java.lang.Error: Unresolved compilation problem:
       at org.jboss.ejb3.installer.Installer.main(Installer.java:142)
      


      Think that came from EJBTHREE-1382 work that added a dependency on ejb3-common 0.1.1 to ejb3-installer.

      To get it to work locally I added the following to the ejb3-installer and ejb3-plugin poms:

       <!-- EJB3 Common -->
       <dependency>
       <groupId>org.jboss.ejb3</groupId>
       <artifactId>jboss-ejb3-common</artifactId>
       <version>0.1.1</version>
       </dependency>
      


      Had to add to the plugin pom to get the necessary class in the plugin jar.

      Don't know if that's the correct fix, but it got my local env working enough that I can run the clustering testsuite.


        • 1. Re: Plugin issues
          alrubinger

          We've been having compile issues all week. As I've been resolving/updating dependencies, I've got a lot of local POM changes to commit tonight which should sort these out by tomorrow.

          Sorry for the inconvenience; lots of these changes are required due to restrictions placed by the introduction of the Enforcer Plugin, and my local Maven Repo contains some dependencies that never made it to snapshots.jboss.org.

          S,
          ALR