<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.2.Final</version>
<executions>
<execution>
<id>Dev_Deploy</id>
<phase>install</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<hostname>127.0.0.1</hostname>
<port>9999</port>
<name>admin</name>
<password>admin@123</password>
</configuration>
</plugin>
Hi,I am writing pom.xml to deploy my .ear file to jboss eap 6.1. My pom.xml is as follows