rusheye-dist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.arquillian.rusheye</groupId>
<artifactId>rusheye-dist</artifactId>
<version>1.0.0</version>
</dependency><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>rusheye-root-parent</artifactId>
<groupId>org.arquillian.rusheye</groupId>
<version>1.0.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>rusheye-dist</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>org.arquillian.rusheye</groupId>
<artifactId>rusheye-impl</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<finalName>rusheye</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass>org.arquillian.rusheye.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<name>Rusheye - Distribution</name>
</project>