Skip to content

Instantly share code, notes, and snippets.

@utsengar
Created January 29, 2011 07:42
Show Gist options
  • Save utsengar/801654 to your computer and use it in GitHub Desktop.
Save utsengar/801654 to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>/home/wouter/java/nb60b2/glassfish-v2-b58g/bin/asadmin</executable>
<arguments>
<argument>deploy</argument>
<argument>--user=admin</argument>
<argument>--passwordfile=/home/wouter/.asadminadminpassword</argument>
<argument>--host=laptop</argument>
<argument>--port=4848</argument>
<argument>target/${artifactId}-${version}.${packaging}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment