From df8cd4f92245d455d52b5034e7390f8c8ab8d5fc Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Tue, 29 Aug 2017 00:02:10 +0300 Subject: [PATCH] one more step --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f693fd8..ca1ead1 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ bundledLibs 'org.libreoffice:ridl:5.3.2' bundledLibs 'org.libreoffice:unoil:5.3.2' bundledLibs 'org.jbibtex:jbibtex:1.0.15' bundledLibs 'org.json:json:20140107' -bundledLibs 'junit:junit:4.12' +compile 'junit:junit:4.12' bundledLibs files('idl') configurations.compile.extendsFrom(configurations.bundledLibs) } @@ -32,6 +32,10 @@ jar { } from('src/main/java') { include '**/*.properties' + include '**/*.xml' + exclude '**/*Test.class' + exclude '**/AllTests.class' + exclude 'org/openoffice/**/*' } }