Download dropwizard-hibernate-0.7.0.jar file

Introduction

You can download dropwizard-hibernate-0.7.0.jar in this page.

License

Apache Open Source

Type List

dropwizard-hibernate-0.7.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.dropwizard/dropwizard-hibernate/pom.properties
META-INF/maven/io.dropwizard/dropwizard-hibernate/pom.xml
io.dropwizard.hibernate.AbstractDAO.class
io.dropwizard.hibernate.HibernateBundle.class
io.dropwizard.hibernate.SessionFactoryFactory.class
io.dropwizard.hibernate.SessionFactoryHealthCheck.class
io.dropwizard.hibernate.SessionFactoryManager.class
io.dropwizard.hibernate.UnitOfWork.class
io.dropwizard.hibernate.UnitOfWorkRequestDispatcher.class
io.dropwizard.hibernate.UnitOfWorkResourceMethodDispatchAdapter.class
io.dropwizard.hibernate.UnitOfWorkResourceMethodDispatchProvider.class

Pom

dropwizard-hibernate-0.7.0.pom file content.

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

    <parent>
        <groupId>io.dropwizard</groupId>
        <artifactId>dropwizard-parent</artifactId>
        <version>0.7.0</version>
    </parent>

    <artifactId>dropwizard-hibernate</artifactId>
    <name>Dropwizard Hibernate Support</name>

    <dependencies>
        <dependency>
            <groupId>io.dropwizard</groupId>
            <artifactId>dropwizard-db</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-hibernate4</artifactId>
            <version>${jackson.version}</version>
        </dependency>
        <dependency>
            <groupId>org.jadira.usertype</groupId>
            <artifactId>usertype.core</artifactId>
            <version>3.0.0.GA</version>
            <exclusions>
                <exclusion>
                    <groupId>org.hibernate</groupId>
                    <artifactId>hibernate-entitymanager</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.joda</groupId>
                    <artifactId>joda-money</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>4.3.1.Final</version>
            <exclusions>
                <exclusion>
                    <groupId>org.jboss.logging</groupId>
                    <artifactId>jboss-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- we need HSQL because it handles time zones, H2 totally doesn't -->
        <dependency>
            <groupId>org.hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>2.3.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey.jersey-test-framework</groupId>
            <artifactId>jersey-test-framework-core</artifactId>
            <version>${jersey.version}</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey.jersey-test-framework</groupId>
            <artifactId>jersey-test-framework-inmemory</artifactId>
            <version>${jersey.version}</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>io.dropwizard</groupId>
   <artifactId>dropwizard-hibernate</artifactId>
   <version>0.7.0</version>
</dependency>

Download

If you think the following dropwizard-hibernate-0.7.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download dropwizard-hibernate-0.7.0.jar file




PreviousNext

Related