You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Mick Knutson <mi...@hotmail.com> on 2005/06/15 20:28:06 UTC

example hibernate3 configuration for maven?

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: example hibernate3 configuration for maven?

Posted by Mick Knutson <mi...@hotmail.com>.
Thanks. Much appreciated.


>From: Graham King <gr...@darkcoding.net>
>Reply-To: "Maven Users List" <us...@maven.apache.org>
>To: Maven Users List <us...@maven.apache.org>
>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: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>


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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: example hibernate3 configuration for maven?

Posted by Graham King <gr...@darkcoding.net>.
  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: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 

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