Download dropwizard-hibernate-1.0.0.jar file

Introduction

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

License

Apache Open Source

Type List

dropwizard-hibernate-1.0.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.ScanningHibernateBundle.class
io.dropwizard.hibernate.SessionFactoryFactory.class
io.dropwizard.hibernate.SessionFactoryHealthCheck.class
io.dropwizard.hibernate.SessionFactoryManager.class
io.dropwizard.hibernate.UnitOfWork.class
io.dropwizard.hibernate.UnitOfWorkApplicationListener.class
io.dropwizard.hibernate.UnitOfWorkAspect.class
io.dropwizard.hibernate.UnitOfWorkAwareProxyFactory.class

Pom

dropwizard-hibernate-1.0.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>1.0.0</version>
    </parent>

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

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.dropwizard</groupId>
                <artifactId>dropwizard-bom</artifactId>
                <version>${project.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>io.dropwizard</groupId>
            <artifactId>dropwizard-db</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-hibernate5</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jadira.usertype</groupId>
            <artifactId>usertype.core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
        </dependency>

        <dependency>
            <groupId>io.dropwizard</groupId>
            <artifactId>dropwizard-testing</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- we need HSQL because it handles time zones, H2 totally doesn't -->
        <dependency>
            <groupId>org.hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.test-framework.providers</groupId>
            <artifactId>jersey-test-framework-provider-inmemory</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

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

Download

If you think the following dropwizard-hibernate-1.0.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-1.0.0.jar file




PreviousNext

Related