elastic-grid
Rev 505 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<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/maven-v4_0_0.xsd">
<parent>
<groupId>com.elasticgrid</groupId>
<artifactId>elastic-grid-modules</artifactId>
<version>0.9.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>amazon-ec2-bootstrapper</artifactId>
<packaging>jar</packaging>
<name>Modules :: Amazon EC2 Bootstrapper</name>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>amazon-ec2-provisioner</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>private-lan-provisioner</artifactId>
<version>${pom.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.rioproject</groupId>
<artifactId>monitor</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.rioproject</groupId>
<artifactId>rio</artifactId>
<scope>test</scope>
</dependency>
<!-- Various dependencies -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<forkMode>never</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>true</optimize>
<encoding>UTF-8</encoding>
<meminitial>128m</meminitial>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<threshold>Normal</threshold>
<effort>Max</effort>
<excludeFilterFile>${basedir}/src/main/conf/findbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</reporting>
</project>