Thank you! I had to use version 1.7 of the digester, but that did the trick.
-----Original Message----- From: Barrie Treloar [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2008 11:56 PM To: Maven Users List Subject: Re: How to get around a Maven Bug? On Thu, Jun 19, 2008 at 11:46 PM, Hoying, Ken <[EMAIL PROTECTED]> wrote: > I am getting the error below when attempting to add the Apache > commons-validator version 1.3.1 to my project. > > It looks like this might be a known issue in Maven based on this bug > report: > http://jira.codehaus.org/browse/MNG-2123?page=com.atlassian.jira.plugin. > system.issuetabpanels:worklog-tabpanel. > > I am relatively new to Maven and am not sure how I can work around the > issue. Any help would be greatly appreciated! > > > [INFO] Using default encoding to copy filtered resources. > Downloading: > http://c3qubuild1:8081//commons-validator/commons-validator/1.3.1/comm > on > s-validator-1.3.1.pom > Downloading: > http://repo1.maven.org/maven2/commons-validator/commons-validator/1.3. > 1/ > commons-validator-1.3.1.pom > 8K downloaded > Downloading: > http://c3qubuild1:8081//jcsc/jcsc-gnu-regexp/0.98.1/jcsc-gnu-regexp-0. > 98 > .1.pom > Downloading: > http://repo1.maven.org/maven2/jcsc/jcsc-gnu-regexp/0.98.1/jcsc-gnu-reg > ex > p-0.98.1.pom > [INFO] > ---------------------------------------------------------------------- > -- > [ERROR] FATAL ERROR > [INFO] > ---------------------------------------------------------------------- > -- [INFO] version was null for commons-digester:commons-digester Have you tried including as a dependency in your pom commons-digester? commons-validator:1.3 uses the following definition. <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.6</version> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ----------------------------------------- ***Note:The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the Sender immediately by replying to the message and deleting it from your computer. Thank you. Premier Inc. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
