elide-datastore-hibernate5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-hibernate5</artifactId> <version>5.1.2</version> </dependency>
<!-- ~ Copyright 2016, Yahoo Inc. ~ Licensed under the Apache License, Version 2.0 ~ See LICENSE file in project root for terms. --> <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> <artifactId>elide-datastore-hibernate5</artifactId> <packaging>jar</packaging> <name>Elide Data Store: Hibernate 5</name> <description>Elide Data Store for Hibernate 5 support</description> <url>https://github.com/yahoo/elide</url> <parent> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-parent-pom</artifactId> <version>5.1.2</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Yahoo Inc.</name> <url>https://github.com/yahoo</url> </developer> </developers> <scm> <developerConnection>scm:git:ssh://git@github.com/yahoo/elide.git</developerConnection> <url>https://github.com/yahoo/elide.git</url> <tag>5.1.2</tag> </scm> <properties> <excludeTags>excludeOnHibernate5</excludeTags> </properties> <dependencies> <!-- Elide (including integration tests) --> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-core</artifactId> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-hibernate</artifactId> <version>5.1.2</version> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-hibernate</artifactId> <version>5.1.2</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-integration-tests</artifactId> <version>5.1.2</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </exclusion> <exclusion> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> </exclusion> </exclusions> </dependency> <!-- Hibernate 5 --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate5.version}</version> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>jasper-runtime</artifactId> <groupId>tomcat</groupId> </exclusion> <exclusion> <artifactId>xerces</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>jasper-compiler</artifactId> <groupId>tomcat</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>${hibernate5.version}</version> </dependency> <!-- For proper serialization in elide-core --> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-hibernate5</artifactId> <version>${version.jackson}</version> </dependency> <!-- Integration test --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <scope>test</scope> </dependency> <!-- Envers testing --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-envers</artifactId> <version>${hibernate5.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>test-hibernatesessionfactory-store</id> <phase>pre-integration-test</phase> <goals> <goal>integration-test</goal> </goals> <configuration> <systemPropertyVariables> <dataStoreHarness>com.yahoo.elide.datastores.hibernate5.HibernateDataStoreHarness</dataStoreHarness> </systemPropertyVariables> </configuration> </execution> <execution> <id>test-hibernateentitymanager-store</id> <phase>pre-integration-test</phase> <goals> <goal>integration-test</goal> </goals> <configuration> <systemPropertyVariables> <dataStoreHarness>com.yahoo.elide.datastores.hibernate5.HibernateEntityManagerDataStoreHarness</dataStoreHarness> </systemPropertyVariables> </configuration> </execution> <execution> <id>integration-test</id> <phase>integration-test</phase> <configuration> <skip>true</skip> </configuration> </execution> </executions> <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <trimStackTrace>false</trimStackTrace> <failIfNoTests>true</failIfNoTests> <excludedGroups>${excludeTags}</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> </project>