Thanks. Much appreciated.

From: Graham King <[EMAIL PROTECTED]>
Reply-To: "Maven Users List" <[email protected]>
To: Maven Users List <[email protected]>
Subject: Re: example hibernate3 configuration for maven?
Date: Thu, 16 Jun 2005 12:36:15 +0100

 Hibernate uses pretty much every other open source project ever written.

Try this:

        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.6</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

       <dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.7.0</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-digester</groupId>
            <artifactId>commons-digester</artifactId>
            <version>1.6</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
            <version>1.2</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-validator</groupId>
            <artifactId>commons-validator</artifactId>
            <version>1.1.4</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.2.1</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.0</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.1</version>
            <properties>
                <war.bundle>true</war.bundle>
            </properties>
        </dependency>

    <dependency>
      <groupId>antlr</groupId>
      <artifactId>antlr</artifactId>
      <version>2.7.5</version>
      <properties>
            <war.bundle>true</war.bundle>
      </properties>
    </dependency>

       <dependency>
         <groupId>hibernate</groupId>
         <artifactId>hibernate</artifactId>
         <version>3.0</version>
         <properties>
            <war.bundle>true</war.bundle>
         </properties>
       </dependency>

       <dependency>
         <groupId>ehcache</groupId>
         <artifactId>ehcache</artifactId>
         <version>1.1</version>
         <properties>
            <war.bundle>true</war.bundle>
         </properties>
       </dependency>

       <dependency>
         <groupId>cglib</groupId>
         <artifactId>cglib</artifactId>
         <version>2.0.2</version>
         <properties>
            <war.bundle>true</war.bundle>
         </properties>
       </dependency>

       <dependency>
         <groupId>asm</groupId>
         <artifactId>asm</artifactId>
         <version>1.4</version>
         <properties>
            <war.bundle>true</war.bundle>
         </properties>
       </dependency>


 Graham.

Mick Knutson wrote:
I am hoping someone can show me the dependancies for hibernate3 in maven. Please...

Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)



---------------------------------------------------------------------
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]



Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to