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
'maven' 카테고리의 다른 글
로컬 저장소(local repository) 없이 jar 파일 추가하기 (0) | 2016.05.03 |
---|---|
[cobertura] - 코드 커버리지 플러그인 (0) | 2015.02.03 |
[PMD] - reporting 설정 (0) | 2015.02.02 |