This is an automated email from the ASF dual-hosted git repository. volodymyr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit 086ecbd4d3aee96b942c8110c9c948dcd7435b7d Author: Volodymyr Vysotskyi <[email protected]> AuthorDate: Mon Dec 2 18:46:51 2019 +0200 DRILL-7221: Exclude debug files generated by maven debug option from jar closes #1915 --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 3ea8a95..68f75a2 100644 --- a/pom.xml +++ b/pom.xml @@ -438,6 +438,9 @@ <exclude>**/logging.properties</exclude> <exclude>**/logback.out.xml</exclude> <exclude>**/logback.xml</exclude> + <!-- Excludes files generated by maven debug option --> + <exclude>**/javac.sh</exclude> + <exclude>**/org.codehaus.plexus.compiler.javac.JavacCompiler*</exclude> </excludes> <archive> <index>true</index>
