blob: 60547e3784e9696a823f6cca5decc30674008d04 [file] [log] [blame]
<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>
<packaging>jar</packaging>
<artifactId>brooklyn-all</artifactId>
<name>Brooklyn All Things</name>
<description>
All Brooklyn entities and policies including web-console and CLI launcher
packaged as a single Jar with dependencies for easy usage
</description>
<parent>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-parent</artifactId>
<version>0.5.0-M1</version> <!-- BROOKLYN_VERSION -->
<relativePath>../../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-policy</artifactId>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-software-webapp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-software-messaging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-software-database</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-software-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-software-nosql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-systems-whirr</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-systems-hadoop</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-systems-openshift</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-systems-cloudfoundry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-launcher</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.brooklyn</groupId>
<artifactId>brooklyn-cli</artifactId>
<version>${project.version}</version>
</dependency>
<!-- bring in all jclouds-supported cloud providers -->
<dependency>
<groupId>org.jclouds</groupId>
<artifactId>jclouds-allcompute</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<activation>
<property>
<name>!skipShade</name>
</property>
</activation>
<id>shade</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-with-dependencies.jar</outputFile>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-distribution</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}-with-dependencies.jar</file>
<type>jar</type>
<classifier>with-dependencies</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>