blob: 7b9b4413a9aa4dbf79b566b1a457a1cb38f41351 [file] [log] [blame]
<?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>
<artifactId>river-container</artifactId>
<groupId>org.apache.river.container</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>org.apache.river.container</groupId>
<artifactId>product</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>product</name>
<dependencies>
<dependency>
<groupId>org.apache.river.container</groupId>
<artifactId>river-container-core</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.jini</groupId>
<artifactId>jsk-policy</artifactId>
<version>2.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.river.container</groupId>
<artifactId>reggie-module</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.river.container</groupId>
<artifactId>browser-module</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>product-container</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assemble/product-container.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>