hdt-java-package
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-java-package</artifactId>
<version>2.1</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>
<artifactId>hdt-java-package</artifactId>
<name>HDT Java Package</name>
<description>HDT Java Package for Distribution</description>
<packaging>pom</packaging>
<parent>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-java-parent</artifactId>
<version>2.1</version>
</parent>
<dependencies>
<dependency>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-java-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-java-cli</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.wdaqua</groupId>
<artifactId>hdt-jena</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- The configuration of maven-assembly-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<!-- The configuration of the plugin -->
<configuration>
<!-- Specifies the configuration file of the assembly plugin -->
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>