Skip to content

Instantly share code, notes, and snippets.

@li-salvadorlopez
Created January 15, 2015 01:22
Show Gist options
  • Select an option

  • Save li-salvadorlopez/cfb6c651fb954ad94b40 to your computer and use it in GitHub Desktop.

Select an option

Save li-salvadorlopez/cfb6c651fb954ad94b40 to your computer and use it in GitHub Desktop.
Maven jboss plugin
<profile>
<id>remote-deploy</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.1.1.Final</version>
<configuration>
<hostname>${jboss.hostname}</hostname>
<port>${jboss.port}</port>
<username>${jboss.adminuser}</username>
<password>${jboss.adminuserpassword}</password>
<domain>
<server-groups>
<server-group>${jboss.domain.servergroup}</server-group>
</server-groups>
</domain>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment