You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Alexandre Nshimiyimana <al...@gmail.com> on 2008/02/12 17:54:48 UTC

commons-digester version conflicts

Hello,
I get this error


[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

Couldn't find a version in [1.6] to match range [1.7,)
  commons-digester:commons-digester:jar:null


My pom.xml  contains this dependancies


<dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-hibernate3</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.acegisecurity</groupId>
            <artifactId>acegi-security</artifactId>
            <version>1.0.3</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate</artifactId>
            <version>3.2.1.ga</version>
        </dependency>
        <dependency>
            <groupId>jdom</groupId>
            <artifactId>jdom</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-tiles</artifactId>
            <version>1.3.5</version>
        </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>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.1</version>
            <scope>test</scope>
        </dependency>
        <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>poi</groupId>
            <artifactId>poi</artifactId>
            <version>2.5.1</version>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2</version>
        </dependency>

        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.2</version>
            <exclusions>
                <exclusion>
                    <groupId>xml-apis</groupId>
                    <artifactId>xml-apis</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xerces</groupId>
                    <artifactId>xerces</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>tomcat</groupId>
            <artifactId>jasper-runtime</artifactId>
            <version>5.5.9</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>jasperreports</groupId>
            <artifactId>jasperreports</artifactId>
            <version>1.2.8</version>
            <exclusions>
                <exclusion>
                    <groupId>xml-apis</groupId>
                    <artifactId>xml-apis</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-el</artifactId>
            <version>1.3.5</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-extras</artifactId>
            <version>1.3.5</version>
        </dependency>
        <dependency>
            <groupId>oro</groupId>
            <artifactId>oro</artifactId>
            <version>2.0.8</version>
        </dependency>
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>regexp</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>string</artifactId>
            <version>1.1.0</version>
        </dependency>
        <dependency>
            <groupId>com.openpole</groupId>
            <artifactId>op-fw15</artifactId>
            <version>1.2.4</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>3.1.12</version>
        </dependency>
        <dependency>
              <groupId>velocity</groupId>
              <artifactId>velocity</artifactId>
              <version>1.4</version>
        </dependency>
    </dependencies>

Re: commons-digester version conflicts

Posted by "Alex. " <al...@gmail.com>.
Resolved.
Thanks Alfred and Michael.


2008/8/19 Michael McCallum <gh...@apache.org>

> It unfortunately happens when there is a conflict as well... so if you have
> two ranges that cannot be resolved you get an OverConstrainedException
> which
> gets hidden with -X
>
> do mvn -X and you will see the exception... and can traceback to the
> conflict
>
> On Wed, 20 Aug 2008 03:18:38 Alex. wrote:
> > This happen when Maven don't know whitch artifact version to use.
> >
> >
> > [INFO] Failed to resolve artifact.
> >
> > >> Couldn't find a version in [1.6] to match range [1.7,)
> > >>   commons-digester:commons-digester:jar:null
> >
>
>
> --
> Michael McCallum
> Enterprise Engineer
> mailto:gholam@apache.org
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: commons-digester version conflicts

Posted by Michael McCallum <gh...@apache.org>.
It unfortunately happens when there is a conflict as well... so if you have 
two ranges that cannot be resolved you get an OverConstrainedException which 
gets hidden with -X 

do mvn -X and you will see the exception... and can traceback to the conflict

On Wed, 20 Aug 2008 03:18:38 Alex. wrote:
> This happen when Maven don't know whitch artifact version to use.
>
>
> [INFO] Failed to resolve artifact.
>
> >> Couldn't find a version in [1.6] to match range [1.7,)
> >>   commons-digester:commons-digester:jar:null
>


-- 
Michael McCallum
Enterprise Engineer
mailto:gholam@apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: commons-digester version conflicts

Posted by "Alex. " <al...@gmail.com>.
This happen when Maven don't know whitch artifact version to use.


[INFO] Failed to resolve artifact.
>>
>> Couldn't find a version in [1.6] to match range [1.7,)
>>   commons-digester:commons-digester:jar:null


2008/8/19 Alfred Chan <al...@gmail.com>

>
> Hi Alexandre,
>
> I encountered the same problem.
>
> But, sorry that I don't understand what is the meaning of "The version
> resolve problems".
> Would you explain more?
>
> Thanks,
> Alfred
>
>
> Alexandre Nshimiyimana wrote:
> >
> > The version resolve problems
> >
> >
> > Hello,
> >> I get this error
> >>
> >>
> >> [ERROR] BUILD ERROR
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [INFO] Failed to resolve artifact.
> >>
> >> Couldn't find a version in [1.6] to match range [1.7,)
> >>   commons-digester:commons-digester:jar:null
> >>
> >>
> >> My pom.xml  contains this dependancies
> >>
> >>
> >> <dependencies>
> >>         <dependency>
> >>             <groupId>org.springframework</groupId>
> >>             <artifactId>spring-webmvc</artifactId>
> >>             <version>2.0.1</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.springframework</groupId>
> >>             <artifactId>spring-hibernate3</artifactId>
> >>             <version>2.0.1</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.springframework</groupId>
> >>             <artifactId>spring-aop</artifactId>
> >>             <version>2.0.1</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.acegisecurity</groupId>
> >>             <artifactId>acegi-security</artifactId>
> >>             <version>1.0.3</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.hibernate</groupId>
> >>             <artifactId>hibernate</artifactId>
> >>             <version>3.2.1.ga</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>jdom</groupId>
> >>             <artifactId>jdom</artifactId>
> >>             <version>1.0</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.apache.struts</groupId>
> >>             <artifactId>struts-tiles</artifactId>
> >>             <version>1.3.5</version>
> >>         </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>
> >>         <dependency>
> >>             <groupId>junit</groupId>
> >>             <artifactId>junit</artifactId>
> >>             <version>4.1</version>
> >>             <scope>test</scope>
> >>         </dependency>
> >>         <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>poi</groupId>
> >>             <artifactId>poi</artifactId>
> >>             <version>2.5.1</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>commons-lang</groupId>
> >>             <artifactId>commons-lang</artifactId>
> >>             <version>2.2</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>commons-collections</groupId>
> >>             <artifactId>commons-collections</artifactId>
> >>             <version>3.2</version>
> >>         </dependency>
> >>
> >>         <dependency>
> >>             <groupId>commons-dbcp</groupId>
> >>             <artifactId>commons-dbcp</artifactId>
> >>             <version>1.2</version>
> >>             <exclusions>
> >>                 <exclusion>
> >>                     <groupId>xml-apis</groupId>
> >>                     <artifactId>xml-apis</artifactId>
> >>                 </exclusion>
> >>                 <exclusion>
> >>                     <groupId>xerces</groupId>
> >>                     <artifactId>xerces</artifactId>
> >>                 </exclusion>
> >>             </exclusions>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>tomcat</groupId>
> >>             <artifactId>jasper-runtime</artifactId>
> >>             <version>5.5.9</version>
> >>             <scope>provided</scope>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>jasperreports</groupId>
> >>             <artifactId>jasperreports</artifactId>
> >>             <version>1.2.8</version>
> >>             <exclusions>
> >>                 <exclusion>
> >>                     <groupId>xml-apis</groupId>
> >>                     <artifactId>xml-apis</artifactId>
> >>                 </exclusion>
> >>             </exclusions>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.apache.struts</groupId>
> >>             <artifactId>struts-el</artifactId>
> >>             <version>1.3.5</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>org.apache.struts</groupId>
> >>             <artifactId>struts-extras</artifactId>
> >>             <version>1.3.5</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>oro</groupId>
> >>             <artifactId>oro</artifactId>
> >>             <version>2.0.8</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>taglibs</groupId>
> >>             <artifactId>regexp</artifactId>
> >>             <version>1.0.1</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>taglibs</groupId>
> >>             <artifactId>string</artifactId>
> >>             <version>1.1.0</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>com.openpole</groupId>
> >>             <artifactId>op-fw15</artifactId>
> >>             <version>1.2.4</version>
> >>         </dependency>
> >>         <dependency>
> >>             <groupId>mysql</groupId>
> >>             <artifactId>mysql-connector-java</artifactId>
> >>             <version>3.1.12</version>
> >>         </dependency>
> >>         <dependency>
> >>               <groupId>velocity</groupId>
> >>               <artifactId>velocity</artifactId>
> >>               <version>1.4</version>
> >>         </dependency>
> >>     </dependencies>
> >>
> >>
> >>
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/commons-digester-version-conflicts-tp15437484p19044065.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: commons-digester version conflicts

Posted by Alfred Chan <al...@gmail.com>.
Hi Alexandre,

I encountered the same problem.

But, sorry that I don't understand what is the meaning of "The version
resolve problems".
Would you explain more?

Thanks,
Alfred


Alexandre Nshimiyimana wrote:
> 
> The version resolve problems
> 
> 
> Hello,
>> I get this error
>>
>>
>> [ERROR] BUILD ERROR
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Failed to resolve artifact.
>>
>> Couldn't find a version in [1.6] to match range [1.7,)
>>   commons-digester:commons-digester:jar:null
>>
>>
>> My pom.xml  contains this dependancies
>>
>>
>> <dependencies>
>>         <dependency>
>>             <groupId>org.springframework</groupId>
>>             <artifactId>spring-webmvc</artifactId>
>>             <version>2.0.1</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.springframework</groupId>
>>             <artifactId>spring-hibernate3</artifactId>
>>             <version>2.0.1</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.springframework</groupId>
>>             <artifactId>spring-aop</artifactId>
>>             <version>2.0.1</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.acegisecurity</groupId>
>>             <artifactId>acegi-security</artifactId>
>>             <version>1.0.3</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.hibernate</groupId>
>>             <artifactId>hibernate</artifactId>
>>             <version>3.2.1.ga</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>jdom</groupId>
>>             <artifactId>jdom</artifactId>
>>             <version>1.0</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.apache.struts</groupId>
>>             <artifactId>struts-tiles</artifactId>
>>             <version>1.3.5</version>
>>         </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>
>>         <dependency>
>>             <groupId>junit</groupId>
>>             <artifactId>junit</artifactId>
>>             <version>4.1</version>
>>             <scope>test</scope>
>>         </dependency>
>>         <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>poi</groupId>
>>             <artifactId>poi</artifactId>
>>             <version>2.5.1</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>commons-lang</groupId>
>>             <artifactId>commons-lang</artifactId>
>>             <version>2.2</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>commons-collections</groupId>
>>             <artifactId>commons-collections</artifactId>
>>             <version>3.2</version>
>>         </dependency>
>>
>>         <dependency>
>>             <groupId>commons-dbcp</groupId>
>>             <artifactId>commons-dbcp</artifactId>
>>             <version>1.2</version>
>>             <exclusions>
>>                 <exclusion>
>>                     <groupId>xml-apis</groupId>
>>                     <artifactId>xml-apis</artifactId>
>>                 </exclusion>
>>                 <exclusion>
>>                     <groupId>xerces</groupId>
>>                     <artifactId>xerces</artifactId>
>>                 </exclusion>
>>             </exclusions>
>>         </dependency>
>>         <dependency>
>>             <groupId>tomcat</groupId>
>>             <artifactId>jasper-runtime</artifactId>
>>             <version>5.5.9</version>
>>             <scope>provided</scope>
>>         </dependency>
>>         <dependency>
>>             <groupId>jasperreports</groupId>
>>             <artifactId>jasperreports</artifactId>
>>             <version>1.2.8</version>
>>             <exclusions>
>>                 <exclusion>
>>                     <groupId>xml-apis</groupId>
>>                     <artifactId>xml-apis</artifactId>
>>                 </exclusion>
>>             </exclusions>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.apache.struts</groupId>
>>             <artifactId>struts-el</artifactId>
>>             <version>1.3.5</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>org.apache.struts</groupId>
>>             <artifactId>struts-extras</artifactId>
>>             <version>1.3.5</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>oro</groupId>
>>             <artifactId>oro</artifactId>
>>             <version>2.0.8</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>taglibs</groupId>
>>             <artifactId>regexp</artifactId>
>>             <version>1.0.1</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>taglibs</groupId>
>>             <artifactId>string</artifactId>
>>             <version>1.1.0</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>com.openpole</groupId>
>>             <artifactId>op-fw15</artifactId>
>>             <version>1.2.4</version>
>>         </dependency>
>>         <dependency>
>>             <groupId>mysql</groupId>
>>             <artifactId>mysql-connector-java</artifactId>
>>             <version>3.1.12</version>
>>         </dependency>
>>         <dependency>
>>               <groupId>velocity</groupId>
>>               <artifactId>velocity</artifactId>
>>               <version>1.4</version>
>>         </dependency>
>>     </dependencies>
>>
>>
>>
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/commons-digester-version-conflicts-tp15437484p19044065.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: commons-digester version conflicts

Posted by Alexandre Nshimiyimana <al...@gmail.com>.
The version resolve problems


Hello,
> I get this error
>
>
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
>
> Couldn't find a version in [1.6] to match range [1.7,)
>   commons-digester:commons-digester:jar:null
>
>
> My pom.xml  contains this dependancies
>
>
> <dependencies>
>         <dependency>
>             <groupId>org.springframework</groupId>
>             <artifactId>spring-webmvc</artifactId>
>             <version>2.0.1</version>
>         </dependency>
>         <dependency>
>             <groupId>org.springframework</groupId>
>             <artifactId>spring-hibernate3</artifactId>
>             <version>2.0.1</version>
>         </dependency>
>         <dependency>
>             <groupId>org.springframework</groupId>
>             <artifactId>spring-aop</artifactId>
>             <version>2.0.1</version>
>         </dependency>
>         <dependency>
>             <groupId>org.acegisecurity</groupId>
>             <artifactId>acegi-security</artifactId>
>             <version>1.0.3</version>
>         </dependency>
>         <dependency>
>             <groupId>org.hibernate</groupId>
>             <artifactId>hibernate</artifactId>
>             <version>3.2.1.ga</version>
>         </dependency>
>         <dependency>
>             <groupId>jdom</groupId>
>             <artifactId>jdom</artifactId>
>             <version>1.0</version>
>         </dependency>
>         <dependency>
>             <groupId>org.apache.struts</groupId>
>             <artifactId>struts-tiles</artifactId>
>             <version>1.3.5</version>
>         </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>
>         <dependency>
>             <groupId>junit</groupId>
>             <artifactId>junit</artifactId>
>             <version>4.1</version>
>             <scope>test</scope>
>         </dependency>
>         <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>poi</groupId>
>             <artifactId>poi</artifactId>
>             <version>2.5.1</version>
>         </dependency>
>         <dependency>
>             <groupId>commons-lang</groupId>
>             <artifactId>commons-lang</artifactId>
>             <version>2.2</version>
>         </dependency>
>         <dependency>
>             <groupId>commons-collections</groupId>
>             <artifactId>commons-collections</artifactId>
>             <version>3.2</version>
>         </dependency>
>
>         <dependency>
>             <groupId>commons-dbcp</groupId>
>             <artifactId>commons-dbcp</artifactId>
>             <version>1.2</version>
>             <exclusions>
>                 <exclusion>
>                     <groupId>xml-apis</groupId>
>                     <artifactId>xml-apis</artifactId>
>                 </exclusion>
>                 <exclusion>
>                     <groupId>xerces</groupId>
>                     <artifactId>xerces</artifactId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <dependency>
>             <groupId>tomcat</groupId>
>             <artifactId>jasper-runtime</artifactId>
>             <version>5.5.9</version>
>             <scope>provided</scope>
>         </dependency>
>         <dependency>
>             <groupId>jasperreports</groupId>
>             <artifactId>jasperreports</artifactId>
>             <version>1.2.8</version>
>             <exclusions>
>                 <exclusion>
>                     <groupId>xml-apis</groupId>
>                     <artifactId>xml-apis</artifactId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <dependency>
>             <groupId>org.apache.struts</groupId>
>             <artifactId>struts-el</artifactId>
>             <version>1.3.5</version>
>         </dependency>
>         <dependency>
>             <groupId>org.apache.struts</groupId>
>             <artifactId>struts-extras</artifactId>
>             <version>1.3.5</version>
>         </dependency>
>         <dependency>
>             <groupId>oro</groupId>
>             <artifactId>oro</artifactId>
>             <version>2.0.8</version>
>         </dependency>
>         <dependency>
>             <groupId>taglibs</groupId>
>             <artifactId>regexp</artifactId>
>             <version>1.0.1</version>
>         </dependency>
>         <dependency>
>             <groupId>taglibs</groupId>
>             <artifactId>string</artifactId>
>             <version>1.1.0</version>
>         </dependency>
>         <dependency>
>             <groupId>com.openpole</groupId>
>             <artifactId>op-fw15</artifactId>
>             <version>1.2.4</version>
>         </dependency>
>         <dependency>
>             <groupId>mysql</groupId>
>             <artifactId>mysql-connector-java</artifactId>
>             <version>3.1.12</version>
>         </dependency>
>         <dependency>
>               <groupId>velocity</groupId>
>               <artifactId>velocity</artifactId>
>               <version>1.4</version>
>         </dependency>
>     </dependencies>
>
>
>
>
>