-
Notifications
You must be signed in to change notification settings - Fork 8
Usage: testResources
David Matějček edited this page Jun 5, 2023
·
2 revisions
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<version>2.1.0</version>
<executions>
<execution>
<id>utf8-to-latin1</id>
<goals>
<goal>testResources</goal>
</goals>
<phase>process-test-resources</phase><!-- default -->
<configuration>
<srcDir>src/test/native2ascii</srcDir><!-- default -->
<targetDir>${project.build.testOutputDirectory}</targetDir><!-- default -->
<encoding>${project.build.sourceEncoding}</encoding><!-- default -->
<includes>
<include>**/*.properties</include><!-- default -->
</includes>
<excludes>
<exclude></exclude><!-- nothing by default -->
</excludes>
</configuration>
</execution>
</executions>
</plugin>