From 310df36bfa6e32a3ea1447fc324a7e7e6fdb2af1 Mon Sep 17 00:00:00 2001 From: David Pilato Date: Sat, 14 Jun 2014 18:56:14 +0200 Subject: [PATCH] SL4FJ dependency version problem This is due to `edu.ucar:netcdf` lib which comes from `tika-parsers` dependency. ``` [INFO] +- org.apache.tika:tika-parsers:jar:1.5:compile [INFO] | +- edu.ucar:netcdf:jar:4.2-min:compile [INFO] | | \- org.slf4j:slf4j-api:jar:1.5.6:compile ``` We can exclude this library from the generated ZIP artifact. Closes #41. --- src/main/assemblies/plugin.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/assemblies/plugin.xml b/src/main/assemblies/plugin.xml index 00bb9d331bc..b11241141e7 100644 --- a/src/main/assemblies/plugin.xml +++ b/src/main/assemblies/plugin.xml @@ -12,6 +12,7 @@ true org.elasticsearch:elasticsearch + org.slf4j:slf4j-api @@ -21,6 +22,9 @@ org.apache.tika:tika-parsers + + org.slf4j:slf4j-api + - \ No newline at end of file +