I would like to include scripts files as part of packaging test files using maven. I ma using the below plugin configuration however config and jython files the files are not package in the test jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<includes>
<include>**/config/*</include>
<include>**/jython/*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
is there anyway to include the files which are not in src/test/java and src/test/resources in test-jar?