2015. 2. 6. 09:44

jboss manager를 사용하여 배포


pom.xml

..........

<build>

<plugins>

<plugin>

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

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

<version>7.4.Final</version>

<executions>

<execution>

<id>test_id</id>

<phase>install</phase>

<goals>

<goal>deploy</goal>

</goals>

<configuration>

<force>true</force>

<hostname>127.0.0.1</hostname>

<port>9999</port>

<username>username</username>

<password>pwssword</password>

</configuration>

</execution>

</executions>

</plugin>

..........


goals

clean install


Posted by 짱가쟁이