Skip to content

Instantly share code, notes, and snippets.

@cmoulliard
Created July 12, 2013 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmoulliard/9b5ccf9a57481b519618 to your computer and use it in GitHub Desktop.
Save cmoulliard/9b5ccf9a57481b519618 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.spb.poc</groupId>
<artifactId>parent</artifactId>
<version>1.0</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>hawtio</artifactId>
<name>SPB :: POC : Monitoring</name>
<dependencies>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-embedded</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-local-jvm-mbean</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>eu.spb.poc.monitoring.MainApplication</mainClass>
<arguments>
<!-- We assume that the war is located under src/main/resources -->
<argument>hawtio-default-1.2-SNAPSHOT.war</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment