The following example represents the minimum necessary configuration to create a vltpack artifact.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.example</groupId> <artifactId>example-ui</artifactId> <version>1.0-SNAPSHOT</version> <!-- be sure to specify the packaging type as 'vltpack' --> <packaging>vltpack</packaging> <build> <!-- specify resources that will be copied to the target directory for inclusion in the package --> <resources> <resource> <directory>src/main/content</directory> </resource> </resources> <plugins> <plugin> <groupId>net.adamcin</groupId> <artifactId>vltpack-maven-plugin</artifactId> <version>1.0.0</version> <!-- also be sure to enable extensions to activate the vltpack lifecycle --> <extensions>true</extensions> </plugin> </plugins> </build> </project>