galaxy-ec2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.proofpoint.galaxy</groupId>
<artifactId>galaxy-ec2</artifactId>
<version>0.8</version>
</dependency><?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>com.proofpoint.galaxy</groupId>
<artifactId>galaxy-root</artifactId>
<version>0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.proofpoint.galaxy</groupId>
<artifactId>galaxy-ec2</artifactId>
<packaging>pom</packaging>
<name>galaxy-ec2</name>
<description>Galaxy EC2 scripts</description>
<version>0.8</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>attach-files</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${basedir}/galaxy-install.sh</file>
<type>sh</type>
<classifier>install</classifier>
</artifact>
<artifact>
<file>${basedir}/galaxy-install-prep.sh</file>
<type>sh</type>
<classifier>install-prep</classifier>
</artifact>
<artifact>
<file>${basedir}/galaxy-part-handler.py</file>
<type>py</type>
<classifier>part-handler</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>