packaging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.srujankujmar</groupId>
<artifactId>packaging</artifactId>
<version>0.9.8.1</version>
</dependency><?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">
<parent>
<artifactId>hyscale</artifactId>
<groupId>com.github.srujankujmar</groupId>
<version>0.9.8.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>packaging</artifactId>
<packaging>pom</packaging>
<properties>
<main.basedir>../</main.basedir>
<main.dist.dir>${main.basedir}/_dist</main.dist.dir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>controller-service</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>${main.dist.dir}/artifacts/</outputDirectory>
<destFileName>hyscale.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
</plugins>
</build>
</project>