Merge pull request #2462 from olamy/no_sources_jar_for_test_modules

[WIP] no need of sources jar for test jars will save some io...
This commit is contained in:
Olivier Lamy 2018-04-19 18:16:41 +10:00 committed by GitHub
commit 9c1cd15e6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,14 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<!-- no need of sources for test jars -->
<skipSource>true</skipSource>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>