Two things come to mind:

* It looks like you are missing the 'configure' goal for jboss-maven-plugin.

* My team has had trouble with the jboss:start and jboss:stop goals on Windows. The Windows users on my team run the following scripts directly to start and stop the jboss instance:
  target\jboss\bin\run.sh
  target\jboss\bin\shutdown.sh

-Max

Mick Knutson wrote:
I am wanting to start JBoss the deploy my ear and I can't seem to get a
connection:

               <plugin>
                   <groupId>org.codehaus.mojo</groupId>
                   <artifactId>jboss-maven-plugin</artifactId>
                   <version>1.0</version>
                   <executions>
                       <execution>
                           <phase>package</phase>
                           <goals>
                               <goal>start</goal>
                               <goal>undeploy</goal>
                               <goal>deploy</goal>
                               <!--<goal>stop</goal>-->
                           </goals>
                           <configuration>
                               <jbossHome>${jbossPath}</jbossHome>
                               <port>9090</port>
                           </configuration>
                       </execution>
                   </executions>
               </plugin>






---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to