cdc-asd-distrib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.gitlab.cdc-java.asd</groupId>
<artifactId>cdc-asd-distrib</artifactId>
<version>0.35.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>
<groupId>com.gitlab.cdc-java.asd</groupId>
<artifactId>cdc-asd</artifactId>
<version>0.35.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>cdc-asd-distrib</artifactId>
<packaging>pom</packaging>
<name>CDC - ASD - Distrib</name>
<url>https://www.gitlab.com/cdc-java/cdc-asd</url>
<dependencies>
<dependency>
<groupId>com.gitlab.cdc-java.asd</groupId>
<artifactId>cdc-asd-tools</artifactId>
<version>0.35.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/distrib/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>