1 Reply Latest reply on Jul 29, 2016 1:01 PM by jamezp

    maven jboss as plugin deploy app - JBAS012144 - Conn Timed out

    vincesam30

      I am working on a fairly simple maven deploy task and running into an issue.  Below is the xml for the deploy.  Would appreciate help!

       

      Error:

      java.net.ConnectException: JBAS012144: Could not connect to remote://localhost:8080. The connection timed out

       

       

       

      <plugin>

                              <groupId>org.jboss.as.plugins</groupId>

                              <artifactId>jboss-as-maven-plugin</artifactId>

                              <version>7.5.Final</version>

                              <executions>

                                    <execution>

                                          <phase>install</phase>

                                          <goals>

                                                <goal>deploy</goal>

                                          </goals>

                                          <configuration>

                                                <hostname>localhost</hostname>

                                                <port>8080</port>

                                                <jbossHome>D:\jboss\jboss-eap-6.2</jbossHome>

                                    <fileName>target/xxx.war</fileName>

                                          </configuration>

                                    </execution>

                              </executions>

                        </plugin>