<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> <parent> <groupId>org.apache.poi</groupId> <artifactId>poi-parent</artifactId> <version>3.16-beta3-SNAPSHOT</version> </parent> <artifactId>poi-scratchpad</artifactId> <packaging>jar</packaging> <name>Apache POI Scratchpad package</name> <properties> <!-- Exclude some generated code from Sonar analysis --> <sonar.exclusions>src/main/java/org/apache/poi/hwpf/model/types/*,src/main/java/org/apache/poi/hdf/model/hdftypes/definitions/*</sonar.exclusions> </properties> <build> <plugins> <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven.plugin.resources.version}</version> <executions> <execution> <id>copy-sources</id> <!-- here the phase you need --> <phase>generate-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/src/main/java</outputDirectory> <resources> <resource> <directory>../../src/scratchpad/src</directory> </resource> </resources> </configuration> </execution> <execution> <id>copy-resources</id> <!-- here the phase you need --> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/src/main/resources</outputDirectory> <resources> <resource> <directory>../../src/resources/scratchpad</directory> </resource> </resources> </configuration> </execution> <execution> <id>copy-tests</id> <!-- here the phase you need --> <phase>generate-test-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/src/test/java</outputDirectory> <resources> <resource> <directory>../../src/scratchpad/testcases</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <!-- clean copied sources afterwards --> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven.plugin.clean.version}</version> <configuration> <filesets> <fileset> <directory>src</directory> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>poi-main</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>poi-main</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </project>