eon2-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>nu.zoom</groupId>
<artifactId>eon2-assembly</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>nu.zoom</groupId>
<artifactId>assembly</artifactId>
<version>1</version>
</parent>
<groupId>nu.zoom</groupId>
<artifactId>eon2-assembly</artifactId>
<version>2.0.0</version>
<name>Eye Of Newt 2 distribution</name>
<url>http://oss.zoom.nu/www/portunis</url>
<packaging>jar</packaging>
<description>Distribution assembly for Portunis</description>
<dependencies>
<dependency>
<groupId>nu.zoom</groupId>
<artifactId>eon2</artifactId>
<version>1.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<outputDirectory>target</outputDirectory>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>deploy</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>