You can download hazelcast-azure-1.0.jar in this page.
The MIT License (MIT)
hazelcast-azure-1.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.hazelcast.azure/hazelcast-azure/pom.properties META-INF/maven/com.hazelcast.azure/hazelcast-azure/pom.xml META-INF/services/com.hazelcast.spi.discovery.DiscoveryStrategyFactory com.hazelcast.azure.AzureAuthHelper.class com.hazelcast.azure.AzureDiscoveryStrategy.class com.hazelcast.azure.AzureDiscoveryStrategyFactory.class com.hazelcast.azure.AzureProperties.class
hazelcast-azure-1.0.pom file content.
<!-- The MIT License (MIT) Copyright (c) 2015 Microsoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <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> <name>hazelcast-azure</name> <description>An Azure DiscoveryStrategy for Hazelcast</description> <url>http://github.com/sedouard/hazelcast-azure</url> <artifactId>hazelcast-azure</artifactId> <groupId>com.hazelcast.azure</groupId> <version>1.0-RC1</version> <packaging>jar</packaging> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://raw.githubusercontent.com/sedouard/hazelcast-azure/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>https://github.com/sedouard/hazelcast-azure.git</connection> <developerConnection>https://github.com/sedouard/hazelcast-azure.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/sedouard/hazelcast-azure</url> </scm> <developers> <developer> <id>sedouard</id> <name>Steven Edouard</name> <email>sedouard@microsoft.com</email> <url>http://www.stevenedouard.com</url> <organization>Microsoft</organization> <organizationUrl>http://www.microsoft.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>America/Los_Angeles</timezone> <properties> <picUrl>https://avatars.githubusercontent.com/u/3053263?v=3</picUrl> </properties> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.1</version> <configuration> <argLine></argLine> </configuration> </plugin> <plugin> <groupId>com.fizzed</groupId> <artifactId>fizzed-watcher-maven-plugin</artifactId> <version>1.0.4</version> <configuration> <files> <param>src/main/java</param> <param>src/main/resources</param> <param>src/test/java</param> </files> <goals> <param>clean</param> <param>compile</param> </goals> <profiles> <param>optional-profile-to-activate-while-running-goals</param> </profiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <version>3.6</version> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <scope>test</scope> <version>3.6</version> <classifier>tests</classifier> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-compute</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-resources</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-network</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-utility</artifactId> <version>0.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>2.0.2-beta</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.6.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.6.4</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.hazelcast.azure</groupId> <artifactId>hazelcast-azure</artifactId> <version>1.0</version> </dependency>
If you think the following hazelcast-azure-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download hazelcast-azure-1.0.jar file