Download hibernate-ogm-mongodb-4.0.0.beta1.jar file

Introduction

You can download hibernate-ogm-mongodb-4.0.0.beta1.jar in this page.

License

Open Source

Type List

hibernate-ogm-mongodb-4.0.0.beta1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.hibernate.ogm/hibernate-ogm-mongodb/pom.properties
META-INF/maven/org.hibernate.ogm/hibernate-ogm-mongodb/pom.xml
org.hibernate.ogm.datastore.mongodb.AssociationStorage.class
org.hibernate.ogm.datastore.mongodb.Environment.class
org.hibernate.ogm.datastore.mongodb.impl.MongoDBDatastoreProvider.class
org.hibernate.ogm.dialect.mongodb.MongoDBAssociationSnapshot.class
org.hibernate.ogm.dialect.mongodb.MongoDBDialect.class
org.hibernate.ogm.dialect.mongodb.MongoDBTupleSnapshot.class
org.hibernate.ogm.dialect.mongodb.MongoHelpers.class
org.hibernate.ogm.logging.mongodb.impl.Log.class
org.hibernate.ogm.logging.mongodb.impl.LoggerFactory.class
org.hibernate.ogm.type.ByteStringType.class
org/hibernate/ogm/logging/mongodb/impl/Log.i18n.properties

Pom

hibernate-ogm-mongodb-4.0.0.beta1.pom file content.

<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>
        <artifactId>hibernate-ogm-parent</artifactId>
        <groupId>org.hibernate.ogm</groupId>
        <version>4.0.0.Beta1</version>
        <relativePath>..</relativePath>
    </parent>

    <artifactId>hibernate-ogm-mongodb</artifactId>

    <name>Hibernate OGM MongoDB integration</name>
    <description>Persist data in MongoDB system</description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <environmentVariables>
                        <MONGODB_HOSTNAME>${env.MONGODB_HOSTNAME}</MONGODB_HOSTNAME>
                        <MONGODB_PORT>${env.MONGODB_PORT}</MONGODB_PORT>
                    </environmentVariables>
                    <forkMode>once</forkMode>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.bsc.maven</groupId>
                <artifactId>maven-processor-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.hibernate.ogm</groupId>
            <artifactId>hibernate-ogm-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mongodb</groupId>
            <artifactId>mongo-java-driver</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-testing</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-search-orm</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate.ogm</groupId>
            <artifactId>hibernate-ogm-core</artifactId>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.jbossts</groupId>
            <artifactId>jbossjta</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easytesting</groupId>
            <artifactId>fest-assert</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.shrinkwrap</groupId>
            <artifactId>shrinkwrap-impl-base</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.hibernate.ogm</groupId>
   <artifactId>hibernate-ogm-mongodb</artifactId>
   <version>4.0.0.beta1</version>
</dependency>

Download

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



Download hibernate-ogm-mongodb-4.0.0.beta1.jar file




PreviousNext

Related