Hi all, when I deploy my web application on a different machine other than mine I receive this Exception when I try to open XLSX files with
Workbook wb = WorkbookFactory.create(new File(IVENTORY_TEMPLATE)); java.lang.ClassCastException: org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration I'm using POI 3.15 in a multi-module maven web application (web, ejb, jpa) packaged as an EAR archive. I've attached here the complete stacktrace and my maven dependency tree from EAR project. Can you spot a misconfiguration or do you have any advice on how to solve this issue? We're pretty sure there's nothing wrong with the Excel files (created both with Excel 2007 and OpenOffice). Thanks in advance. -- *Christian Castelli* Senior Developer *Habble Srl* Via della Canapiglia, 5 56019 Vecchiano (Pi) - Italy Lat: 43° 46' 53.03" N Long: 10° 20' 10.36" E Help Desk: +39 050 6397490 E-Fax:+39 050 6390236 Web: http://www.habble.it Skype id: christrack LinkedIn: christian.castelli <http://it.linkedin.com/in/christiancastelli/> Rispetta l'ambiente, stampa questa mail solo se veramente necessario.
2017-01-25 08:38:41,796 ERROR [it.habble.servlet.inventory.InventoryServlet] (defaul t task-21) InventoryServlet exception: java.lang.ClassCastException: org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration at org.apache.xerces.parsers.DOMParser.<init>(Unknown Source) at org.apache.xerces.parsers.DOMParser.<init>(Unknown Source) at org.apache.xerces.jaxp.DocumentBuilderImpl.<init>(Unknown Source) at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(Unknown Source) at __redirected.__DocumentBuilderFactory.newDocumentBuilder(__DocumentBuilderFactory.java:122) at org.apache.poi.util.DocumentHelper.newDocumentBuilder(DocumentHelper.java:84) at org.apache.poi.util.DocumentHelper.readDocument(DocumentHelper.java:137) at org.apache.poi.openxml4j.opc.internal.ContentTypeManager.parseContentTypesFile(ContentTypeManager.java:374) at org.apache.poi.openxml4j.opc.internal.ContentTypeManager.<init>(ContentTypeManager.java:100) at org.apache.poi.openxml4j.opc.internal.ZipContentTypeManager.<init>(ZipContentTypeManager.java:54) at org.apache.poi.openxml4j.opc.ZipPackage.getPartsImpl(ZipPackage.java:257) at org.apache.poi.openxml4j.opc.OPCPackage.getParts(OPCPackage.java:774) at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:308) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:261) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:222) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:201) at it.habble.servlet.inventory.InventoryBuilder.processFile(InventoryBuilder.java:680) at it.habble.servlet.inventory.InventoryServlet.doPost(InventoryServlet.java:155) at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:118) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:84) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:103) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:154) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:199) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:110) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:50) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:344) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:261) at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:60) at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:131) at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:56) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.security.handlers.AuthenticationConstraintHandler.handleRequest(AuthenticationConstraintHandler.java:51) at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:63) at io.undertow.servlet.handlers.security.ServletSecurityConstraintHandler.handleRequest(ServletSecurityConstraintHandler.java:56) at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:58) at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:70) at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:76) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:261) at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:247) at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:76) at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:166) at io.undertow.server.Connectors.executeRootHandler(Connectors.java:197) at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:759) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building habble-ear 1.0 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ habble-ear --- [INFO] it.habble:habble-ear:ear:1.0 [INFO] +- it.habble:habble-common:jar:1.0:compile [INFO] | +- log4j:log4j:jar:1.2.17:compile [INFO] | +- com.sun.mail:javax.mail:jar:1.5.5:compile [INFO] | | \- javax.activation:activation:jar:1.1:compile [INFO] | +- org.apache.commons:commons-lang3:jar:3.4:compile [INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.8.5:compile [INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.8.5:compile [INFO] | | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile - omitted for conflict with 2.8.5) [INFO] | | \- (com.fasterxml.jackson.core:jackson-core:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.8.5:compile [INFO] | +- com.google.code.gson:gson:jar:2.6.2:compile [INFO] | +- commons-io:commons-io:jar:2.4:compile [INFO] | +- org.apache.commons:commons-dbcp2:jar:2.1.1:compile [INFO] | | +- org.apache.commons:commons-pool2:jar:2.4.2:compile [INFO] | | \- (commons-logging:commons-logging:jar:1.2:compile - omitted for conflict with 1.1.1) [INFO] | +- junit:junit:jar:4.12:compile [INFO] | | \- org.hamcrest:hamcrest-core:jar:1.3:compile [INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.2:compile [INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:compile [INFO] | | +- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate) [INFO] | | \- (commons-codec:commons-codec:jar:1.9:compile - omitted for duplicate) [INFO] | +- org.apache.httpcomponents:fluent-hc:jar:4.5.2:compile [INFO] | | +- (org.apache.httpcomponents:httpclient:jar:4.5.2:compile - omitted for duplicate) [INFO] | | \- (commons-logging:commons-logging:jar:1.2:compile - omitted for duplicate) [INFO] | \- com.googlecode.libphonenumber:libphonenumber:jar:7.7.2:compile [INFO] +- com.google:gcm:jar:0.0.2:compile [INFO] | +- org.mockito:mockito-all:jar:1.10.19:compile [INFO] | +- com.googlecode.json-simple:json-simple:jar:1.1.1:compile [INFO] | | \- (junit:junit:jar:4.10:compile - omitted for conflict with 4.12) [INFO] | +- (com.fasterxml.jackson.core:jackson-core:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.8.5:compile - omitted for duplicate) [INFO] | \- (com.fasterxml.jackson.core:jackson-annotations:jar:2.8.5:compile - omitted for duplicate) [INFO] +- it.habble:habble-report:jar:1.0:compile [INFO] | +- org.postgresql:postgresql:jar:9.4.1208.jre7:compile [INFO] | +- (log4j:log4j:jar:1.2.17:compile - omitted for duplicate) [INFO] | +- com.google.api-client:google-api-client:jar:1.20.0:compile [INFO] | | +- com.google.oauth-client:google-oauth-client:jar:1.20.0:compile [INFO] | | | +- com.google.http-client:google-http-client:jar:1.20.0:compile [INFO] | | | | +- (com.google.code.findbugs:jsr305:jar:1.3.9:compile - omitted for duplicate) [INFO] | | | | \- (org.apache.httpcomponents:httpclient:jar:4.0.1:compile - omitted for conflict with 4.5.2) [INFO] | | | \- com.google.code.findbugs:jsr305:jar:1.3.9:compile [INFO] | | +- com.google.http-client:google-http-client-jackson2:jar:1.20.0:compile [INFO] | | | +- (com.google.http-client:google-http-client:jar:1.20.0:compile - omitted for duplicate) [INFO] | | | \- (com.fasterxml.jackson.core:jackson-core:jar:2.1.3:compile - omitted for conflict with 2.8.5) [INFO] | | \- com.google.guava:guava-jdk5:jar:13.0:compile [INFO] | +- com.google.api-client:google-api-client-jackson2:jar:1.20.0:compile [INFO] | | +- (com.google.api-client:google-api-client:jar:1.20.0:compile - omitted for duplicate) [INFO] | | \- (com.google.http-client:google-http-client-jackson2:jar:1.20.0:compile - omitted for duplicate) [INFO] | +- com.google.apis:google-api-services-drive:jar:v2-rev211-1.21.0:compile [INFO] | | \- (com.google.api-client:google-api-client:jar:1.21.0:compile - omitted for conflict with 1.20.0) [INFO] | +- com.google.apis:google-api-services-oauth2:jar:v2-rev107-1.20.0:compile [INFO] | | \- (com.google.api-client:google-api-client:jar:1.20.0:compile - omitted for duplicate) [INFO] | +- (org.apache.commons:commons-lang3:jar:3.4:compile - omitted for duplicate) [INFO] | +- xml-apis:xml-apis:jar:1.4.01:compile [INFO] | +- xerces:xercesImpl:jar:2.11.0:compile [INFO] | | \- (xml-apis:xml-apis:jar:1.4.01:compile - omitted for duplicate) [INFO] | +- org.apache.poi:poi-ooxml:jar:3.15:compile [INFO] | | +- (org.apache.poi:poi:jar:3.15:compile - omitted for duplicate) [INFO] | | +- (org.apache.poi:poi-ooxml-schemas:jar:3.15:compile - omitted for duplicate) [INFO] | | \- com.github.virtuald:curvesapi:jar:1.04:compile [INFO] | +- org.apache.poi:ooxml-schemas:jar:1.3:compile [INFO] | | \- org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile [INFO] | | \- stax:stax-api:jar:1.0.1:compile [INFO] | +- org.apache.poi:poi-excelant:jar:3.15:compile [INFO] | | +- (org.apache.poi:poi:jar:3.15:compile - omitted for duplicate) [INFO] | | +- (org.apache.poi:poi-ooxml:jar:3.15:compile - omitted for duplicate) [INFO] | | \- org.apache.ant:ant:jar:1.8.2:compile [INFO] | | \- org.apache.ant:ant-launcher:jar:1.8.2:compile [INFO] | +- org.apache.poi:openxml4j:jar:1.0-beta:compile [INFO] | | +- dom4j:dom4j:jar:1.6.1:compile [INFO] | | | \- (xml-apis:xml-apis:jar:1.0.b2:compile - omitted for conflict with 1.4.01) [INFO] | | \- (log4j:log4j:jar:1.2.8:compile - omitted for conflict with 1.2.17) [INFO] | +- org.jfree:jfreechart:jar:1.0.19:compile [INFO] | | \- org.jfree:jcommon:jar:1.0.23:compile [INFO] | +- net.sf.jasperreports:jasperreports:jar:6.1.0:compile [INFO] | | +- commons-beanutils:commons-beanutils:jar:1.9.0:compile [INFO] | | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2) [INFO] | | | \- (commons-collections:commons-collections:jar:3.2.1:compile - omitted for duplicate) [INFO] | | +- commons-collections:commons-collections:jar:3.2.1:compile [INFO] | | +- commons-digester:commons-digester:jar:2.1:compile [INFO] | | | +- (commons-beanutils:commons-beanutils:jar:1.8.3:compile - omitted for conflict with 1.9.0) [INFO] | | | \- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2) [INFO] | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2) [INFO] | | +- com.lowagie:itext:jar:2.1.7.js2:compile [INFO] | | | +- bouncycastle:bcmail-jdk14:jar:138:compile [INFO] | | | +- bouncycastle:bcprov-jdk14:jar:138:compile [INFO] | | | \- org.bouncycastle:bctsp-jdk14:jar:1.38:compile [INFO] | | | +- org.bouncycastle:bcprov-jdk14:jar:1.38:compile [INFO] | | | \- org.bouncycastle:bcmail-jdk14:jar:1.38:compile [INFO] | | | \- (org.bouncycastle:bcprov-jdk14:jar:1.38:compile - omitted for duplicate) [INFO] | | +- jfree:jcommon:jar:1.0.15:compile [INFO] | | +- jfree:jfreechart:jar:1.0.12:compile [INFO] | | | \- (jfree:jcommon:jar:1.0.15:compile - omitted for duplicate) [INFO] | | +- (xml-apis:xml-apis:jar:1.3.02:compile - omitted for conflict with 1.4.01) [INFO] | | +- org.eclipse.jdt.core.compiler:ecj:jar:4.3.1:compile [INFO] | | +- org.codehaus.castor:castor-xml:jar:1.3.3:compile [INFO] | | | +- org.codehaus.castor:castor-core:jar:1.3.3:compile [INFO] | | | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2) [INFO] | | | | \- (commons-lang:commons-lang:jar:2.6:compile - omitted for duplicate) [INFO] | | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for conflict with 1.2) [INFO] | | | +- (commons-lang:commons-lang:jar:2.6:compile - omitted for conflict with 2.4) [INFO] | | | +- (commons-collections:commons-collections:jar:3.2.1:compile - omitted for duplicate) [INFO] | | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | | +- stax:stax:jar:1.2.0:compile [INFO] | | | | \- (stax:stax-api:jar:1.0.1:compile - omitted for duplicate) [INFO] | | | +- javax.xml.stream:stax-api:jar:1.0-2:compile [INFO] | | | \- (org.springframework:spring-context:jar:3.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (com.fasterxml.jackson.core:jackson-core:jar:2.1.4:compile - omitted for conflict with 2.8.5) [INFO] | | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.1.4:compile - omitted for conflict with 2.8.5) [INFO] | | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.1.4:compile - omitted for conflict with 2.8.5) [INFO] | | +- org.apache.lucene:lucene-core:jar:4.5.1:compile [INFO] | | +- org.apache.lucene:lucene-analyzers-common:jar:4.5.1:compile [INFO] | | | \- (org.apache.lucene:lucene-core:jar:4.5.1:compile - omitted for duplicate) [INFO] | | +- org.apache.lucene:lucene-queryparser:jar:4.5.1:compile [INFO] | | | +- (org.apache.lucene:lucene-core:jar:4.5.1:compile - omitted for duplicate) [INFO] | | | +- org.apache.lucene:lucene-queries:jar:4.5.1:compile [INFO] | | | | \- (org.apache.lucene:lucene-core:jar:4.5.1:compile - omitted for duplicate) [INFO] | | | \- org.apache.lucene:lucene-sandbox:jar:4.5.1:compile [INFO] | | | +- (org.apache.lucene:lucene-core:jar:4.5.1:compile - omitted for duplicate) [INFO] | | | \- jakarta-regexp:jakarta-regexp:jar:1.4:compile [INFO] | | +- org.olap4j:olap4j:jar:0.9.7.309-JS-3:compile [INFO] | | \- com.google.zxing:core:jar:2.3.0:compile [INFO] | +- (it.habble:habble-common:jar:1.0:compile - omitted for duplicate) [INFO] | +- (com.google:gcm:jar:0.0.2:compile - omitted for duplicate) [INFO] | +- com.relayrides:pushy:jar:0.8.2:compile [INFO] | | +- io.netty:netty-codec-http2:jar:4.1.6.Final:compile [INFO] | | | +- io.netty:netty-codec-http:jar:4.1.6.Final:compile [INFO] | | | | \- io.netty:netty-codec:jar:4.1.6.Final:compile [INFO] | | | | \- (io.netty:netty-transport:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | | \- io.netty:netty-handler:jar:4.1.6.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.6.Final:compile [INFO] | | | | \- io.netty:netty-common:jar:4.1.6.Final:compile [INFO] | | | +- (io.netty:netty-transport:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | | \- (io.netty:netty-codec:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | +- io.netty:netty-handler-proxy:jar:4.1.6.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.6.Final:compile [INFO] | | | | +- (io.netty:netty-buffer:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | | | \- io.netty:netty-resolver:jar:4.1.6.Final:compile [INFO] | | | | \- (io.netty:netty-common:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.6.Final:compile [INFO] | | | | \- (io.netty:netty-codec:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | | \- (io.netty:netty-codec-http:jar:4.1.6.Final:compile - omitted for duplicate) [INFO] | | +- (com.google.code.gson:gson:jar:2.6.2:compile - omitted for duplicate) [INFO] | | \- (org.slf4j:slf4j-api:jar:1.7.6:compile - omitted for conflict with 1.7.21) [INFO] | +- io.netty:netty-all:jar:4.1.0.Final:compile [INFO] | +- io.netty:netty-tcnative:jar:1.1.33.Fork25:compile [INFO] | +- io.netty:netty-tcnative-boringssl-static:jar:1.1.33.Fork25:compile [INFO] | +- org.eclipse.jetty.alpn:alpn-api:jar:1.1.2.v20150522:compile [INFO] | +- org.slf4j:slf4j-api:jar:1.7.21:compile [INFO] | +- org.slf4j:slf4j-log4j12:jar:1.7.21:compile [INFO] | | +- (org.slf4j:slf4j-api:jar:1.7.21:compile - omitted for duplicate) [INFO] | | \- (log4j:log4j:jar:1.2.17:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-core:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (junit:junit:jar:4.12:compile - omitted for duplicate) [INFO] | +- org.jsmpp:jsmpp:jar:2.3.0:compile [INFO] | | \- (org.slf4j:slf4j-api:jar:1.7.21:compile - omitted for duplicate) [INFO] | \- commons-httpclient:commons-httpclient:jar:3.1:compile [INFO] | +- (commons-logging:commons-logging:jar:1.0.4:compile - omitted for conflict with 1.2) [INFO] | \- (commons-codec:commons-codec:jar:1.2:compile - omitted for conflict with 1.9) [INFO] +- it.habble:habble-jpa:jar:1.0:compile [INFO] | +- (org.postgresql:postgresql:jar:9.4.1208.jre7:compile - omitted for duplicate) [INFO] | +- (log4j:log4j:jar:1.2.17:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-core:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-annotations:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (com.fasterxml.jackson.core:jackson-databind:jar:2.8.5:compile - omitted for duplicate) [INFO] | +- (it.habble:habble-common:jar:1.0:compile - omitted for duplicate) [INFO] | +- org.springframework:spring-jdbc:jar:4.1.3.RELEASE:compile [INFO] | | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | | +- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | | \- (org.springframework:spring-tx:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- org.springframework:spring-web:jar:4.1.3.RELEASE:compile [INFO] | | +- (org.springframework:spring-aop:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | | +- (org.springframework:spring-context:jar:4.1.3.RELEASE:compile - omitted for conflict with 4.0.6.RELEASE) [INFO] | | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- org.hibernate:hibernate-jpamodelgen:jar:5.2.3.Final:compile [INFO] | | \- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile [INFO] | \- (com.googlecode.json-simple:json-simple:jar:RELEASE:compile - omitted for conflict with 1.1.1) [INFO] +- it.habble:habble-ejbs:ejb:1.0:compile [INFO] | +- (org.postgresql:postgresql:jar:9.4.1208.jre7:compile - omitted for duplicate) [INFO] | +- (log4j:log4j:jar:1.2.17:compile - omitted for duplicate) [INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile [INFO] | +- org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile [INFO] | | +- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | | +- (org.springframework:spring-aop:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | \- (org.springframework:spring-expression:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.0.6.RELEASE) [INFO] | +- it.habble:JVolaSMS:jar:3.0.3:compile [INFO] | +- com.ocpsoft:prettyfaces-jsf2:jar:3.3.2:compile [INFO] | +- org.apache.poi:poi:jar:3.15:compile [INFO] | | +- (commons-codec:commons-codec:jar:1.10:compile - omitted for conflict with 1.9) [INFO] | | \- org.apache.commons:commons-collections4:jar:4.1:compile [INFO] | +- (org.apache.poi:poi-ooxml:jar:3.15:compile - omitted for duplicate) [INFO] | +- org.apache.poi:poi-ooxml-schemas:jar:3.15:compile [INFO] | | \- (org.apache.xmlbeans:xmlbeans:jar:2.6.0:compile - omitted for conflict with 2.3.0) [INFO] | +- (org.apache.poi:ooxml-schemas:jar:1.3:compile - omitted for duplicate) [INFO] | +- org.apache.poi:poi-contrib:jar:3.6:compile [INFO] | | +- (org.apache.poi:poi:jar:3.6:compile - omitted for conflict with 3.15) [INFO] | | +- (commons-logging:commons-logging:jar:1.1:runtime - omitted for conflict with 1.2) [INFO] | | \- (log4j:log4j:jar:1.2.13:runtime - omitted for conflict with 1.2.17) [INFO] | +- (org.apache.poi:poi-excelant:jar:3.15:compile - omitted for duplicate) [INFO] | +- org.apache.poi:ooxml-security:jar:1.1:compile [INFO] | | \- (org.apache.xmlbeans:xmlbeans:jar:2.3.0:compile - omitted for duplicate) [INFO] | +- (org.apache.poi:openxml4j:jar:1.0-beta:compile - omitted for duplicate) [INFO] | +- javax.servlet:servlet-api:jar:2.4:compile [INFO] | +- (it.habble:habble-ejb-client:jar:1.0:compile - omitted for duplicate) [INFO] | \- (it.habble:habble-jpa:jar:1.0:compile - omitted for duplicate) [INFO] +- it.habble:habble-ejb-client:jar:1.0:compile [INFO] | +- (org.postgresql:postgresql:jar:9.4.1208.jre7:compile - omitted for duplicate) [INFO] | +- (log4j:log4j:jar:1.2.17:compile - omitted for duplicate) [INFO] | +- (org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (it.habble:JVolaSMS:jar:3.0.3:compile - omitted for duplicate) [INFO] | +- (com.ocpsoft:prettyfaces-jsf2:jar:3.3.2:compile - omitted for duplicate) [INFO] | +- org.richfaces.core:richfaces-core-api:jar:4.1.0.Final:compile [INFO] | | \- com.google.guava:guava:jar:r08:compile [INFO] | +- org.richfaces.core:richfaces-core-impl:jar:4.1.0.Final:compile [INFO] | | +- (org.richfaces.core:richfaces-core-api:jar:4.1.0.Final:compile - omitted for duplicate) [INFO] | | +- net.sourceforge.cssparser:cssparser:jar:0.9.5:compile [INFO] | | | \- org.w3c.css:sac:jar:1.3:compile [INFO] | | \- (com.google.guava:guava:jar:r08:compile - omitted for duplicate) [INFO] | +- org.richfaces.ui:richfaces-components-api:jar:4.1.0.Final:compile [INFO] | | \- (org.richfaces.core:richfaces-core-api:jar:4.1.0.Final:compile - omitted for duplicate) [INFO] | +- org.richfaces.ui:richfaces-components-ui:jar:4.1.0.Final:compile [INFO] | | +- (org.richfaces.ui:richfaces-components-api:jar:4.1.0.Final:compile - omitted for duplicate) [INFO] | | \- (org.richfaces.core:richfaces-core-api:jar:4.1.0.Final:compile - omitted for duplicate) [INFO] | \- (it.habble:habble-jpa:jar:1.0:compile - omitted for duplicate) [INFO] +- it.habble:habble-web:war:1.0:compile [INFO] +- org.springframework:spring-aop:jar:4.1.3.RELEASE:compile [INFO] | +- aopalliance:aopalliance:jar:1.0:compile [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework:spring-aspects:jar:4.1.3.RELEASE:compile [INFO] | \- org.aspectj:aspectjweaver:jar:1.8.4:compile [INFO] +- org.springframework:spring-beans:jar:4.1.3.RELEASE:compile [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework.webflow:spring-binding:jar:2.4.1.RELEASE:compile [INFO] | +- commons-logging:commons-logging:jar:1.1.1:compile [INFO] | +- opensymphony:ognl:jar:2.6.11:compile [INFO] | +- (org.springframework:spring-beans:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-expression:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework:spring-context:jar:4.1.3.RELEASE:compile [INFO] | +- (org.springframework:spring-aop:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- (org.springframework:spring-expression:jar:4.1.3.RELEASE:compile - omitted for conflict with 4.0.6.RELEASE) [INFO] +- org.springframework:spring-context-support:jar:4.1.3.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-context:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework:spring-expression:jar:4.1.3.RELEASE:compile [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework.webflow:spring-faces:jar:2.4.1.RELEASE:compile [INFO] | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for duplicate) [INFO] | +- (org.springframework.webflow:spring-binding:jar:2.4.1.RELEASE:compile - omitted for duplicate) [INFO] | +- org.springframework.webflow:spring-webflow:jar:2.4.1.RELEASE:compile [INFO] | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for duplicate) [INFO] | | +- (opensymphony:ognl:jar:2.6.11:compile - omitted for duplicate) [INFO] | | +- (org.springframework.webflow:spring-binding:jar:2.4.1.RELEASE:compile - omitted for duplicate) [INFO] | | +- (org.springframework.webflow:spring-js:jar:2.4.1.RELEASE:compile - omitted for duplicate) [INFO] | | +- (org.springframework:spring-beans:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-context:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-core:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-expression:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | +- (org.springframework:spring-web:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | | \- (org.springframework:spring-webmvc:jar:4.0.6.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-expression:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-web:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-webmvc:jar:4.0.6.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework:spring-core:jar:4.1.3.RELEASE:compile [INFO] | \- (commons-logging:commons-logging:jar:1.2:compile - omitted for conflict with 1.1.1) [INFO] +- org.springframework:spring-instrument:jar:4.1.3.RELEASE:compile [INFO] +- org.springframework:spring-instrument-tomcat:jar:4.1.3.RELEASE:compile [INFO] +- org.springframework:spring-orm:jar:4.1.3.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-jdbc:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- org.springframework:spring-tx:jar:4.1.3.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework:spring-oxm:jar:4.1.3.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] | \- (org.springframework:spring-core:jar:4.1.3.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework.webflow:spring-js:jar:2.4.1.RELEASE:compile [INFO] | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for duplicate) [INFO] | +- org.springframework.webflow:spring-js-resources:jar:2.4.1.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-web:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-webmvc:jar:4.0.6.RELEASE:compile - omitted for duplicate) [INFO] +- org.springframework.security.oauth:spring-security-oauth2:jar:2.0.9.RELEASE:compile [INFO] | +- (org.springframework:spring-beans:jar:4.0.9.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:4.0.9.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:4.0.9.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-webmvc:jar:4.0.9.RELEASE:compile - omitted for conflict with 4.0.6.RELEASE) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 3.2.5.RELEASE) [INFO] | +- (org.springframework.security:spring-security-config:jar:3.2.8.RELEASE:compile - omitted for conflict with 3.2.5.RELEASE) [INFO] | +- (org.springframework.security:spring-security-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 3.2.5.RELEASE) [INFO] | +- commons-codec:commons-codec:jar:1.9:compile [INFO] | \- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile [INFO] | \- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile [INFO] +- org.springframework.security:spring-security-remoting:jar:3.2.5.RELEASE:compile [INFO] | +- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-openid:jar:3.2.5.RELEASE:compile [INFO] | +- com.google.inject:guice:jar:2.0:compile [INFO] | | \- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | +- org.openid4java:openid4java-nodeps:jar:0.9.6:compile [INFO] | | +- (commons-logging:commons-logging:jar:1.1.1:compile - omitted for duplicate) [INFO] | | \- net.jcip:jcip-annotations:jar:1.0:compile [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-web:jar:3.2.5.RELEASE:compile - omitted for conflict with 3.2.8.RELEASE) [INFO] | +- (org.springframework:spring-aop:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- net.sourceforge.nekohtml:nekohtml:jar:1.9.20:runtime [INFO] | | \- (xerces:xercesImpl:jar:2.10.0:runtime - omitted for conflict with 2.11.0) [INFO] | \- (org.apache.httpcomponents:httpclient:jar:4.2.3:runtime - omitted for conflict with 4.5.2) [INFO] +- org.springframework.security:spring-security-taglibs:jar:3.2.5.RELEASE:compile [INFO] | +- (org.springframework.security:spring-security-acl:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-web:jar:3.2.5.RELEASE:compile - omitted for conflict with 3.2.8.RELEASE) [INFO] | +- (org.springframework:spring-aop:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-expression:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-ldap:jar:3.2.5.RELEASE:compile [INFO] | +- org.springframework.ldap:spring-ldap-core:jar:1.3.2.RELEASE:compile [INFO] | | \- commons-lang:commons-lang:jar:2.4:compile [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-tx:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-crypto:jar:3.2.5.RELEASE:compile [INFO] | \- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-config:jar:3.2.5.RELEASE:compile [INFO] | +- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-aop:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-cas:jar:3.2.5.RELEASE:compile [INFO] | +- org.jasig.cas.client:cas-client-core:jar:3.3.3:compile [INFO] | | +- org.opensaml:opensaml:jar:2.5.1-1:compile [INFO] | | | +- org.opensaml:openws:jar:1.4.2-1:compile [INFO] | | | | +- org.opensaml:xmltooling:jar:1.3.2-1:compile [INFO] | | | | | +- (org.slf4j:slf4j-api:jar:1.6.1:compile - omitted for conflict with 1.7.21) [INFO] | | | | | +- org.slf4j:log4j-over-slf4j:jar:1.6.1:compile [INFO] | | | | | | \- (org.slf4j:slf4j-api:jar:1.6.1:compile - omitted for conflict with 1.7.21) [INFO] | | | | | +- org.slf4j:jul-to-slf4j:jar:1.6.1:compile [INFO] | | | | | | \- (org.slf4j:slf4j-api:jar:1.6.1:compile - omitted for conflict with 1.7.21) [INFO] | | | | | +- joda-time:joda-time:jar:1.6.2:compile [INFO] | | | | | +- org.bouncycastle:bcprov-jdk15:jar:1.45:compile [INFO] | | | | | +- org.apache.santuario:xmlsec:jar:1.4.4:compile [INFO] | | | | | +- ca.juliusdavies:not-yet-commons-ssl:jar:0.3.9:compile [INFO] | | | | | | \- (commons-httpclient:commons-httpclient:jar:3.0:compile - omitted for conflict with 3.1) [INFO] | | | | | +- (net.jcip:jcip-annotations:jar:1.0:compile - omitted for duplicate) [INFO] | | | | | +- (xml-apis:xml-apis:jar:1.4.01:runtime - omitted for duplicate) [INFO] | | | | | +- (xerces:xercesImpl:jar:2.10.0:runtime - omitted for conflict with 2.11.0) [INFO] | | | | | +- (xml-resolver:xml-resolver:jar:1.2:runtime - omitted for duplicate) [INFO] | | | | | \- (xalan:xalan:jar:2.7.1:runtime - omitted for duplicate) [INFO] | | | | +- (commons-codec:commons-codec:jar:1.3:compile - omitted for conflict with 1.9) [INFO] | | | | +- (commons-httpclient:commons-httpclient:jar:3.1:compile - omitted for duplicate) [INFO] | | | | +- (xml-apis:xml-apis:jar:1.4.01:runtime - omitted for duplicate) [INFO] | | | | +- (xerces:xercesImpl:jar:2.10.0:runtime - omitted for conflict with 2.11.0) [INFO] | | | | +- (xml-resolver:xml-resolver:jar:1.2:runtime - omitted for duplicate) [INFO] | | | | \- (xalan:xalan:jar:2.7.1:runtime - omitted for duplicate) [INFO] | | | +- (commons-collections:commons-collections:jar:3.1:compile - omitted for conflict with 3.2.1) [INFO] | | | +- (commons-lang:commons-lang:jar:2.1:compile - omitted for conflict with 2.4) [INFO] | | | +- velocity:velocity:jar:1.5:compile [INFO] | | | | +- (commons-collections:commons-collections:jar:3.1:compile - omitted for conflict with 3.2.1) [INFO] | | | | \- (commons-lang:commons-lang:jar:2.1:compile - omitted for conflict with 2.4) [INFO] | | | +- org.owasp.esapi:esapi:jar:2.0GA:compile [INFO] | | | +- (xml-apis:xml-apis:jar:1.4.01:runtime - omitted for duplicate) [INFO] | | | +- (xerces:xercesImpl:jar:2.10.0:runtime - omitted for conflict with 2.11.0) [INFO] | | | +- xml-resolver:xml-resolver:jar:1.2:runtime [INFO] | | | \- xalan:xalan:jar:2.7.1:runtime [INFO] | | | \- xalan:serializer:jar:2.7.1:runtime [INFO] | | | \- (xml-apis:xml-apis:jar:1.3.04:runtime - omitted for conflict with 1.4.01) [INFO] | | \- (org.slf4j:slf4j-api:jar:1.7.1:compile - omitted for conflict with 1.7.21) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-web:jar:3.2.5.RELEASE:compile - omitted for conflict with 3.2.8.RELEASE) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-web:jar:3.2.5.RELEASE:compile [INFO] | +- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-expression:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-web:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-aspects:jar:3.2.5.RELEASE:compile [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-beans:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- org.springframework.security:spring-security-acl:jar:3.2.5.RELEASE:compile [INFO] | +- (aopalliance:aopalliance:jar:1.0:compile - omitted for duplicate) [INFO] | +- (org.springframework.security:spring-security-core:jar:3.2.5.RELEASE:compile - omitted for duplicate) [INFO] | +- (org.springframework:spring-aop:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-context:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-core:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | +- (org.springframework:spring-jdbc:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] | \- (org.springframework:spring-tx:jar:3.2.8.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] \- org.springframework:spring-webmvc:jar:4.0.6.RELEASE:compile [INFO] +- (org.springframework:spring-beans:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- (org.springframework:spring-context:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- (org.springframework:spring-core:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] +- (org.springframework:spring-expression:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] \- (org.springframework:spring-web:jar:4.0.6.RELEASE:compile - omitted for conflict with 4.1.3.RELEASE) [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.268 s [INFO] Finished at: 2017-01-25T10:02:47+01:00 [INFO] Final Memory: 23M/327M [INFO] ------------------------------------------------------------------------
--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@poi.apache.org For additional commands, e-mail: user-h...@poi.apache.org