You can download hazelcast-spring-3.3.1.jar in this page.
Open Source License
hazelcast-spring-3.3.1.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/com.hazelcast/hazelcast-spring/pom.properties META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml META-INF/spring.handlers META-INF/spring.schemas com.hazelcast.spring.AbstractHazelcastBeanDefinitionParser.class com.hazelcast.spring.HazelcastClientBeanDefinitionParser.class com.hazelcast.spring.HazelcastConfigBeanDefinitionParser.class com.hazelcast.spring.HazelcastInstanceDefinitionParser.class com.hazelcast.spring.HazelcastNamespaceHandler.class com.hazelcast.spring.HazelcastTypeBeanDefinitionParser.class com.hazelcast.spring.cache.HazelcastCache.class com.hazelcast.spring.cache.HazelcastCacheManager.class com.hazelcast.spring.context.SpringAware.class com.hazelcast.spring.context.SpringManagedContext.class com.hazelcast.spring.hibernate.RegionFactoryBeanDefinitionParser.class hazelcast-spring-3.0.xsd hazelcast-spring-3.1.xsd hazelcast-spring-3.2.xsd hazelcast-spring-3.3.xsd
hazelcast-spring-3.3.1.pom file content.
<!-- ~ Copyright (c) 2008-2013, 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>hazelcast-spring</name> <artifactId>hazelcast-spring</artifactId> <packaging>jar</packaging> <parent> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-root</artifactId> <version>3.3.1</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <org.springframework.version>3.1.0.RELEASE</org.springframework.version> <jsr250.api.version>1.0</jsr250.api.version> <hibernate.core.version>3.5.0-Final</hibernate.core.version> <!-- needed for checkstyle/findbugs --> <main.basedir>${project.parent.basedir}</main.basedir> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>${animal.sniffer.plugin.version}</version> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java16</artifactId> <version>1.0</version> </signature> </configuration> <executions> <execution> <id>source-java6-check</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <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>${maven.bundle.plugin.version}</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Import-Package> !org.junit, !com.hazelcast.*, org.apache.log4j;resolution:=optional, org.apache.log4j.*;resolution:=optional, org.slf4j;resolution:=optional, com.hazelcast.client;resolution:=optional, com.hazelcast.hibernate;resolution:=optional, * </Import-Package> <Fragment-Host>com.hazelcast</Fragment-Host> <!--<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>--> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${org.springframework.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${org.springframework.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${org.springframework.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${org.springframework.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> <version>${jsr250.api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-client</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-hibernate3</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${org.springframework.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <scope>test</scope> <version>${project.parent.version}</version> <classifier>tests</classifier> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.core.version}</version> <scope>test</scope> <optional>true</optional> </dependency> </dependencies> </project>
<dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast-spring</artifactId> <version>3.3.1</version> </dependency>
If you think the following hazelcast-spring-3.3.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download hazelcast-spring-3.3.1.jar file