hazelcast-hibernate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-hibernate</artifactId> <version>5.2.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-hibernate</artifactId> <packaging>pom</packaging> <name>hazelcast-hibernate</name> <version>5.2.0</version> <description>Hazelcast Platform Hibernate Plugin</description> <url>http://www.hazelcast.com/</url> <developers> <developer> <id>ldziedziul</id> <name>Łukasz Dziedziul</name> <organization>Hazelcast</organization> <organizationUrl>https://hazelcast.com</organizationUrl> </developer> <developer> <id>frant-hartm</id> <name>František Hartman</name> <organization>Hazelcast</organization> <organizationUrl>https://hazelcast.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Hazelcast Community License</name> <url>http://hazelcast.com/hazelcast-community-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/hazelcast/hazelcast-hibernate.git</connection> <developerConnection>scm:git:git@github.com:hazelcast/hazelcast-hibernate.git</developerConnection> <tag>v5.2.0</tag> <url>https://github.com/hazelcast/hazelcast-hibernate/</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <release>11</release> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.9</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Export-Package>com.hazelcast.*</Export-Package> <Import-Package>!org.junit, !com.hazelcast.*, org.slf4j;resolution:=optional, *</Import-Package> <Fragment-Host>com.hazelcast</Fragment-Host> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <archive> <index>true</index> <compress>true</compress> <manifest> <addClasspath>false</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>${jpms.module.name}</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <runOrder>failedfirst</runOrder> <argLine>${surefire.argLine}</argLine> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <shadeSourcesContent>true</shadeSourcesContent> <artifactSet> <includes> <include>com.github.ben-manes.caffeine:caffeine</include> </includes> </artifactSet> <filters> <filter> <artifact>com.github.ben-manes.caffeine:caffeine</artifact> <excludes> <exclude>META-INF/*.idx</exclude> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.github.benmanes</pattern> <shadedPattern>com.hazelcast.hibernate.shaded</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>checkstyle</id> <build> <plugins> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyle.plugin.version}</version> <executions> <execution> <phase>validate</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <configuration> <configLocation>${main.basedir}/checkstyle/checkstyle.xml</configLocation> <suppressionsLocation>${main.basedir}/checkstyle/suppressions.xml</suppressionsLocation> <headerLocation>${main.basedir}/checkstyle/ClassHeader.txt</headerLocation> <enableRSS>false</enableRSS> <linkXRef>true</linkXRef> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <failOnViolation>true</failOnViolation> <includeTestSourceDirectory>false</includeTestSourceDirectory> <enableRulesSummary>true</enableRulesSummary> <propertyExpansion>main.basedir=${main.basedir}</propertyExpansion> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>findbugs</id> <build> <plugins> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.7.2.1</version> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <failOnError>true</failOnError> <excludeFilterFile>${main.basedir}/findbugs/findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven.jacoco.plugin.version}</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <testFailureIgnore>true</testFailureIgnore> <argLine>${surefire.argLine}</argLine> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${maven.sonar.plugin.version}</version> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> <javaApiLinks> <property> <name>api_1.8</name> <value>http://download.oracle.com/javase/1.8.0/docs/api/</value> </property> </javaApiLinks> <maxmemory>1024</maxmemory> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>release-repository</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.0</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <scmCommentPrefix>Release -</scmCommentPrefix> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <properties> <javadoc>true</javadoc> </properties> </profile> <profile> <id>release-snapshot</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> <javaApiLinks> <property> <name>api_1.8</name> <value>http://download.oracle.com/javase/1.8.0/docs/api/</value> </property> </javaApiLinks> <excludePackageNames>*.impl:*.internal:*.operations:*.proxy:*.util:com.hazelcast.aws.security: *.handlermigration:*.client.connection.nio:*.client.console:*.buildutils: *.client.protocol.generator:*.cluster.client:*.concurrent:*.collection: *.nio.ascii:*.nio.ssl:*.nio.tcp:*.partition.client:*.transaction.client: *.core.server:com.hazelcast.instance:com.hazelcast.PlaceHolder</excludePackageNames> </configuration> </plugin> </plugins> </build> <properties> <javadoc>true</javadoc> </properties> </profile> </profiles> <modules> <module>hazelcast-hibernate53</module> </modules> <repositories> <repository> <releases> <enabled>false</enabled> </releases> <snapshots /> <id>snapshot-repository</id> <name>Maven2 Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> <repository> <releases> <enabled>false</enabled> </releases> <snapshots /> <id>snapshot-internal</id> <name>Hazelcast Internal Snapshots</name> <url>https://repository.hazelcast.com/snapshot-internal/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <version>5.4.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.opentest4j</groupId> <artifactId>opentest4j</artifactId> <version>1.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.2.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.12.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.reload4j</groupId> <artifactId>reload4j</artifactId> <version>1.2.25</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <version>5.4.0</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>javax.cache</groupId> <artifactId>cache-tests</artifactId> <version>1.1.1</version> <classifier>tests</classifier> <scope>test</scope> <exclusions> <exclusion> <artifactId>cache-api</artifactId> <groupId>javax.cache</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.7.1</version> <classifier>jdk8</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.13</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>6.5.2.Final</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> <version>2.27.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlet</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlets</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-webapp</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-proxy</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>jackson-core</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>jackson-annotations</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>xmlunit-core</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>xmlunit-legacy</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>xmlunit-placeholders</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>jopt-simple</artifactId> <groupId>net.sf.jopt-simple</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>handlebars</artifactId> <groupId>com.github.jknack</groupId> </exclusion> <exclusion> <artifactId>handlebars-helpers</artifactId> <groupId>com.github.jknack</groupId> </exclusion> <exclusion> <artifactId>zjsonpatch</artifactId> <groupId>com.flipkart.zjsonpatch</groupId> </exclusion> <exclusion> <artifactId>commons-fileupload</artifactId> <groupId>commons-fileupload</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.26.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>4.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <version>4.0.5</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.2.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>3.0.1u2</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>release-repository</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <uniqueVersion>false</uniqueVersion> <id>snapshot-repository</id> <name>Maven2 Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <wiremock.version>2.27.2</wiremock.version> <maven.javadoc.plugin.version>3.7.0</maven.javadoc.plugin.version> <maven.jacoco.plugin.version>0.8.8</maven.jacoco.plugin.version> <sonar.verbose>true</sonar.verbose> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <main.basedir>${project.basedir}</main.basedir> <junit.version>4.13.2</junit.version> <maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version> <maven.findbugs.plugin.version>3.0.5</maven.findbugs.plugin.version> <maven.sonar.plugin.version>3.3.0.603</maven.sonar.plugin.version> <maven.jar.plugin.version>3.4.2</maven.jar.plugin.version> <jaxb-core.version>4.0.5</jaxb-core.version> <jakarta.version>3.2.0</jakarta.version> <maven.surefire.plugin.version>3.3.1</maven.surefire.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <reload4j.version>1.2.25</reload4j.version> <hibernate.core.version>6.5.2.Final</hibernate.core.version> <surefire.argLine>-Xmx1G -Dhazelcast.phone.home.enabled=false -Dhazelcast.mancenter.enabled=false -Dhazelcast.test.use.network=false</surefire.argLine> <hazelcast.version>5.4.0</hazelcast.version> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.language>java</sonar.language> <hsqldb.version>2.7.1</hsqldb.version> <mockito.version>5.12.0</mockito.version> <maven.checkstyle.plugin.version>3.4.0</maven.checkstyle.plugin.version> <sonar.jacoco.jar>${basedir}/lib/jacocoagent.jar</sonar.jacoco.jar> <slf4j.api.version>2.0.13</slf4j.api.version> <jaxb-impl.version>4.0.1</jaxb-impl.version> </properties> </project>