<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.alfresco.aps</groupId> <artifactId>aps-unit-test-example</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>APS Project Example</name> <description>An example project showing the use of https://github.com/fcorti/aps-unit-test-utils for testing processes</description> <dependencies> <dependency> <groupId>com.alfresco.aps</groupId> <artifactId>aps-unit-test-utils</artifactId> <version>[1.0-SNAPSHOT,)</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <configuration> <descriptors> <descriptor>src/main/resources/assembly/assembly.xml</descriptor> </descriptors> <!-- if you have special character issues, this is an option to play with. not required in most cases --> <!-- <archiverConfig> <encoding>UTF-8</encoding> </archiverConfig> --> </configuration> <id>create-distribution</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>