Liquibase Hibernate Integration.
Liquibase extension for hibernate integration including generating changesets based on changed hibernate mapping files.
Here is the list of declaration for liquibase-hibernate4. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.liquibase.ext</groupId> <artifactId>liquibase-hibernate4</artifactId> <version>3.3</version> </dependency>
If you think this Maven repository POM file listing for liquibase-hibernate4 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
URL: http://www.apache.org/licenses/LICENSE-2.0Name:Apache License, Version 2.0.
The liquibase-hibernate4-3.3 has 15 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Testing | hamcrest-library 1.3 Hamcrest library of matcher implementations. | 143 |
JPA Hibernate | hibernate-jpa-2.0-api 1.0.1.Final Hibernate definition of the Java Persistence 2.0 (JSR 317) API. | 78 |
Spring | spring-jdbc 3.2.4.RELEASE Spring JDBC | 9 |
Spring | spring-beans 3.2.4.RELEASE Spring Beans | 21 |
Spring | spring-context 3.2.4.RELEASE Spring Context | 25 |
Spring | spring-orm 3.2.4.RELEASE Spring Object/Relational Mapping | 8 |
Database | hsqldb 2.2.9 HSQLDB - Lightweight 100% Java SQL Database Engine | 137 |
MySQL | mysql-connector-java 5.1.26 MySQL java connector | 42 |
The following packages are defined in the liquibase-hibernate4-3.3.jar
liquibase.ext.hibernate.customfactory liquibase.ext.hibernate.database liquibase.ext.hibernate.database.connection liquibase.ext.hibernate.diff liquibase.ext.hibernate.snapshot
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.liquibase.ext</groupId> <artifactId>liquibase-hibernate4</artifactId> <version>3.3</version> <name>Liquibase Hibernate Integration</name> <description>Liquibase extension for hibernate integration including generating changesets based on changed hibernate mapping files </description> <url>https://github.com/liquibase/liquibase-hibernate/wiki</url> <organization> <name>Liquibase.org</name> <url>http://www.liquibase.org</url> </organization> <licenses> <license> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <name>Apache License, Version 2.0</name> </license> </licenses> <issueManagement> <url>https://github.com/liquibase/liquibase-hibernate/issues</url> </issueManagement> <scm> <connection>scm:git:http://github.com/liquibase/liquibase-hibernate.git</connection> <url>https://github.com/liquibase/liquibase-hibernate</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.11</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.3.1.Final</version> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <version>1.0.1.Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>4.3.1.Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-envers</artifactId> <version>4.3.1.Final</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>3.2.4.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.2.4.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.2.4.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.2.4.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>3.2.4.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-hibernate</artifactId> <version>1.2.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>3.1.1</version> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.2.9</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.26</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <optimize>true</optimize> <debug>true</debug> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <reportFormat>plain</reportFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java</id> <phase>compile</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>1.6</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> <configuration> <stagingRepository>/tmp/maven-snapshot</stagingRepository> <mavenExecutorId>forked-path</mavenExecutorId> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <configuration> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <!-- Required for deployment to Sonatype --> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>