Maven Dependency hibernate-tools >> 3.0.0.alpha4a

In this page we are giving Maven Dependency of hibernate >> hibernate-tools version3.0.0.alpha4a

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of hibernate >> hibernate-tools version3.0.0.alpha4a in your project.

In this page we are going to discuss about hibernate-tools version 3.0.0.alpha4a maven dependencies. Maven tool is project management tool which you use to manage your project and easily use hibernate-tools version 3.0.0.alpha4a dependency by just including the code discussed here in pom.xml file of your Maven project.

Maven dependency automatically download dependent library of hibernate-tools version 3.0.0.alpha4a and include the necessary jar files in the project.

Code given here should be included inside <dependencies> ...... </dependencies> tag in the Maven configuration file pom.xml.

We also explained you dependency code of different build system like Gradle Dependency, SBT Dependency, Ivy Dependency, Grape Dependency etc...

Maven dependency of hibernate-tools version 3.0.0.alpha4a

Maven dependency of hibernate-tools version 3.0.0.alpha4a:

<dependency>
	<groupId>hibernate</groupId>
	<artifactId>hibernate-tools</artifactId>
	<version>3.0.0.alpha4a</version>
</dependency>

Gradle Dependency of hibernate-tools version 3.0.0.alpha4a

compile group: 'hibernate', name: 'hibernate-tools', version: '3.0.0.alpha4a'

SBT Dependency of hibernate-tools version 3.0.0.alpha4a

libraryDependencies += "hibernate" % "hibernate-tools" % "3.0.0.alpha4a"

Ivy Dependency of hibernate-tools version 3.0.0.alpha4a

<dependency org="hibernate" name="hibernate-tools" rev="3.0.0.alpha4a"/>

Grape Dependency of hibernate-tools version 3.0.0.alpha4a

@Grapes(
    @Grab(group='hibernate', module='hibernate-tools', version='3.0.0.alpha4a')
)

Leiningen Dependency of hibernate-tools version 3.0.0.alpha4a

[hibernate/hibernate-tools "3.0.0.alpha4a"]

Buildr Dependency of hibernate-tools version 3.0.0.alpha4a

'hibernate:hibernate-tools:jar:3.0.0.alpha4a'

Advertisements