Hmmm. Gotta love it. "Required goal not found: dependency:tree" Maven downloaded maven-dependency-plugin-2.0-alpha-4.jar, but the goal still won't work.
Forgive me for not loving the transitive dependencies when I can't even track down where the dependencies are coming from. Thx anyway Barrett. -----Original Message----- From: Barrett Nuzum [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 1:20 PM To: Maven Users List Subject: RE: Where is crimson-1.1.3 dependency coming from? Blake: Analyzing the Project Site Dependency report or running dependency:tree (if available :( ) should be able to tell you which dependency is causing crimson to be included. Barrett :: Barrett Nuzum Sr. Consultant Direct: 918.640.4414 Fax: 972.789.1340 Valtech Technologies, Inc. 5080 Spectrum Drive Suite 700 West Addison, Texas 75001 www.valtech.us <http://www.valtech.us/> Delivering Business Agility ________________________________ From: Mills, Blake S. [mailto:[EMAIL PROTECTED] Sent: Fri 9/28/2007 1:12 PM To: [email protected] Subject: Where is crimson-1.1.3 dependency coming from? The jar crimson-1.1.3 is causing an exception. When I manually remove the jar from my WEB-INF/lib the exception goes away. I can't find where the dependency for crimson-1.1.3 is coming from. Below is the exception, maven version, jdk version, and pom.xml. Exception: org.springframework.beans.factory.BeanDefinitionStoreException: Parser configuration exception parsing XML from ServletContext resource [/WEB-INF/spring-servlet.xml]; nested exception is javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider [EMAIL PROTECTED] does not support XML Schema. Are you running on Java 1.4 or below with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support. Maven and jdk version: Maven version: 2.0.7 Java version: 1.5.0_11 OS name: "windows xp" version: "5.1" arch: "x86" pom.xml: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.myCompany.claims</groupId> <artifactId>ITClaimsSite</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>ITClaimsSite Maven Webapp</name> <url>http://maven.apache.org <http://maven.apache.org/> </url> <dependencies> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.springmodules</groupId> <artifactId>spring-modules-validation</artifactId> <version>0.7</version> </dependency> <!-- Hibernate --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.0.5</version> </dependency> <!-- JodaTime --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>1.4</version> </dependency> <!-- Calendartag --> <dependency> <groupId>org.calendartag</groupId> <artifactId>calendartag</artifactId> <version>1.0.1</version> </dependency> <!-- Junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <!-- JFreeChart & cewolf tag--> <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.5</version> </dependency> <dependency> <groupId>cewolf</groupId> <artifactId>cewolf</artifactId> <version>1.0</version> <exclusions> <exclusion> <groupId>gnujaxp</groupId> <artifactId>gnujaxp</artifactId> </exclusion> </exclusions> </dependency> <!-- Tags/Servlet --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency> </dependencies> <build> <finalName>ITClaimsSite</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
