diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2016-11-04 10:42:18 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2016-11-04 10:42:18 +0100 |
commit | e4c28f395de65c54bc39375ddd63ae96495f6095 (patch) | |
tree | 5f7fbe18c2f0d9b36b37c01ad3d0c06e94f2cbdf | |
parent | 290256144963c33c55fc5fa99cb5c9a75a7b1f9d (diff) | |
download | pdf-as-4-e4c28f395de65c54bc39375ddd63ae96495f6095.tar.gz pdf-as-4-e4c28f395de65c54bc39375ddd63ae96495f6095.tar.bz2 pdf-as-4-e4c28f395de65c54bc39375ddd63ae96495f6095.zip |
fixed tests for pdfbox2 implementation
-rw-r--r-- | pdf-as-tests/build.gradle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pdf-as-tests/build.gradle b/pdf-as-tests/build.gradle index b23b87d5..9b14f7e2 100644 --- a/pdf-as-tests/build.gradle +++ b/pdf-as-tests/build.gradle @@ -70,7 +70,8 @@ suiteDir.eachDir { File subDir -> if(dirname =="public_pdfbox1"){ classpath += sourceSets.pdfBox1.compileClasspath compileTestJava.classpath += sourceSets.pdfBox1.compileClasspath - } else /* if(dirname =="public_pdfbox2")*/{ + } + if(dirname =="public_pdfbox2"){ classpath += sourceSets.pdfBox2.compileClasspath compileTestJava.classpath += sourceSets.pdfBox2.compileClasspath } |