You can download hazelcast-hibernate52-1.2.jar in this page.
Open Source License
hazelcast-hibernate52-1.2.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/com.hazelcast/hazelcast-hibernate52/pom.properties META-INF/maven/com.hazelcast/hazelcast-hibernate52/pom.xml META-INF/services/com.hazelcast.DataSerializerHook META-INF/services/com.hazelcast.SerializerHook com.hazelcast.hibernate.AbstractHazelcastCacheRegionFactory.class com.hazelcast.hibernate.CacheEnvironment.class com.hazelcast.hibernate.HazelcastCacheRegionFactory.class com.hazelcast.hibernate.HazelcastLocalCacheRegionFactory.class com.hazelcast.hibernate.HazelcastTimestamper.class com.hazelcast.hibernate.RegionCache.class com.hazelcast.hibernate.VersionAwareMapMergePolicy.class com.hazelcast.hibernate.access.AbstractAccessDelegate.class com.hazelcast.hibernate.access.AccessDelegate.class com.hazelcast.hibernate.access.NonStrictReadWriteAccessDelegate.class com.hazelcast.hibernate.access.ReadOnlyAccessDelegate.class com.hazelcast.hibernate.access.ReadWriteAccessDelegate.class com.hazelcast.hibernate.distributed.AbstractRegionCacheEntryProcessor.class com.hazelcast.hibernate.distributed.IMapRegionCache.class com.hazelcast.hibernate.distributed.LockEntryProcessor.class com.hazelcast.hibernate.distributed.UnlockEntryProcessor.class com.hazelcast.hibernate.distributed.UpdateEntryProcessor.class com.hazelcast.hibernate.instance.HazelcastAccessor.class com.hazelcast.hibernate.instance.HazelcastClientLoader.class com.hazelcast.hibernate.instance.HazelcastInstanceFactory.class com.hazelcast.hibernate.instance.HazelcastInstanceLoader.class com.hazelcast.hibernate.instance.IHazelcastInstanceLoader.class com.hazelcast.hibernate.local.CleanupService.class com.hazelcast.hibernate.local.Invalidation.class com.hazelcast.hibernate.local.LocalRegionCache.class com.hazelcast.hibernate.local.Timestamp.class com.hazelcast.hibernate.local.TimestampsRegionCache.class com.hazelcast.hibernate.region.AbstractGeneralRegion.class com.hazelcast.hibernate.region.AbstractHazelcastRegion.class com.hazelcast.hibernate.region.AbstractTransactionalDataRegion.class com.hazelcast.hibernate.region.CacheKeyImpl.class com.hazelcast.hibernate.region.CollectionRegionAccessStrategyAdapter.class com.hazelcast.hibernate.region.EntityRegionAccessStrategyAdapter.class com.hazelcast.hibernate.region.HazelcastCollectionRegion.class com.hazelcast.hibernate.region.HazelcastEntityRegion.class com.hazelcast.hibernate.region.HazelcastNaturalIdRegion.class com.hazelcast.hibernate.region.HazelcastQueryResultsRegion.class com.hazelcast.hibernate.region.HazelcastRegion.class com.hazelcast.hibernate.region.HazelcastTimestampsRegion.class com.hazelcast.hibernate.region.NaturalIdCacheKey.class com.hazelcast.hibernate.region.NaturalIdRegionAccessStrategyAdapter.class com.hazelcast.hibernate.serialization.CacheEntryImpl.class com.hazelcast.hibernate.serialization.Expirable.class com.hazelcast.hibernate.serialization.ExpiryMarker.class com.hazelcast.hibernate.serialization.Hibernate52CacheEntrySerializer.class com.hazelcast.hibernate.serialization.Hibernate5CacheEntrySerializerHook.class com.hazelcast.hibernate.serialization.Hibernate5CacheKeySerializer.class com.hazelcast.hibernate.serialization.Hibernate5CacheKeySerializerHook.class com.hazelcast.hibernate.serialization.Hibernate5NaturalIdKeySerializer.class com.hazelcast.hibernate.serialization.Hibernate5NaturalIdKeySerializerHook.class com.hazelcast.hibernate.serialization.HibernateDataSerializerHook.class com.hazelcast.hibernate.serialization.MarkerWrapper.class com.hazelcast.hibernate.serialization.Value.class
hazelcast-hibernate52-1.2.pom file content.
<!-- ~ Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --><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> <parent> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-hibernate5-parent</artifactId> <version>1.2</version> </parent> <artifactId>hazelcast-hibernate52</artifactId> <packaging>jar</packaging> <description>Hazelcast In-Memory DataGrid Hibernate Plugin</description> <url>http://www.hazelcast.com/</url> <properties> <hibernate.core.version>5.2.5.Final</hibernate.core.version> <jdk.version>1.8</jdk.version> <!-- needed for checkstyle/findbugs --> <main.basedir>${project.parent.basedir}</main.basedir> </properties> <build> <!-- Reuse tests from hibernate5 module --> <testSourceDirectory>../hazelcast-hibernate5/src/test/java</testSourceDirectory> <testResources> <testResource> <directory>../hazelcast-hibernate5/src/test/resources</directory> </testResource> </testResources> <!-- Overlay code onto hibernate5 module --> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> <executions> <execution> <id>copy-sources</id> <phase>generate-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> <overwrite>false</overwrite> <resources> <resource> <directory>../hazelcast-hibernate5/src/main/java</directory> <excludes> <exclude>com/hazelcast/hibernate/region/AbstractGeneralRegion.java</exclude> <exclude>com/hazelcast/hibernate/region/CollectionRegionAccessStrategyAdapter.java</exclude> <exclude>com/hazelcast/hibernate/region/NaturalIdRegionAccessStrategyAdapter.java</exclude> <exclude>com/hazelcast/hibernate/region/EntityRegionAccessStrategyAdapter.java</exclude> <exclude>com/hazelcast/hibernate/serialization/Hibernate5CacheEntrySerializerHook.java</exclude> <exclude>com/hazelcast/hibernate/serialization/Hibernate5CacheEntrySerializer.java</exclude> <exclude>com/hazelcast/hibernate/serialization/Hibernate51CacheEntrySerializer.java</exclude> </excludes> </resource> </resources> </configuration> </execution> <execution> <id>copy-resources</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/classes</outputDirectory> <overwrite>false</overwrite> <resources> <resource> <directory>../hazelcast-hibernate5/src/main/resources</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build.helper.maven.plugin.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration combine.self="override"> <redirectTestOutputToFile>true</redirectTestOutputToFile> <runOrder>failedfirst</runOrder> <argLine> -Xms128m -Xmx1G -XX:MaxPermSize=128M -Dhazelcast.phone.home.enabled=false -Dhazelcast.mancenter.enabled=false -Dhazelcast.logging.type=none -Dhazelcast.test.use.network=false </argLine> <excludes> <exclude>**/HibernateSerializationHookAvailableTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-hibernate52</artifactId> <version>1.2</version> </dependency>
If you think the following hazelcast-hibernate52-1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download hazelcast-hibernate52-1.2.jar file