Re: ava.lang.SecurityException: class "org.apache.poi.POIXMLDocumentPart"'s signer information does not match signer information of other classes in the same package

2016-12-11 Thread larry google groups
Thank you. That is a bit frustrating but I guess that is the route I will go On Sunday, December 11, 2016 at 6:26:04 AM UTC-5, Matching Socks wrote: > > Did you find > > http://stackoverflow.com/questions/2877262/java-securityexception-signer-information-does-not-match > and the linked > >

Re: ava.lang.SecurityException: class "org.apache.poi.POIXMLDocumentPart"'s signer information does not match signer information of other classes in the same package

2016-12-11 Thread Matching Socks
Did you find http://stackoverflow.com/questions/2877262/java-securityexception-signer-information-does-not-match and the linked http://stackoverflow.com/questions/8878068/signer-information-does-not-match -- You received this message because you are subscribed to the Google Groups "Clojure"

Re: ava.lang.SecurityException: class "org.apache.poi.POIXMLDocumentPart"'s signer information does not match signer information of other classes in the same package

2016-12-11 Thread Dusan
Looks like poi-ooxml is a signed jar, so you can't include it in uberjar. Just add the :uberjar-exclusions[#"^org.apache.poi"] in your project.clj and add the required poi jar files to the classpath when running the app On Sunday, December 11, 2016 at 9:15:47 AM UTC+4, larry google groups

Re: ava.lang.SecurityException: class "org.apache.poi.POIXMLDocumentPart"'s signer information does not match signer information of other classes in the same package

2016-12-10 Thread larry google groups
Not sure how to exclude an imported Java class? lein deps :tree Possibly confusing dependencies found: [lein-checkall "0.1.1"] -> [jonase/eastwood "0.0.2"] -> [org.clojure/tools.namespace "0.1.2"] overrides [lein-checkall "0.1.1"] -> [lein-kibit "0.0.8"] -> [jonase/kibit "0.0.8"] ->

ava.lang.SecurityException: class "org.apache.poi.POIXMLDocumentPart"'s signer information does not match signer information of other classes in the same package

2016-12-10 Thread larry google groups
I've never worked much with Java, so dealing with stuff like Maven is the stuff I understand least about Clojure. I've added these 3 items to the dependencies that I list in project.clj [org.apache.poi/poi "3.9"] [org.apache.poi/poi-ooxml