azure-storage-queue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage-queue</artifactId> <version>10.0.1-Preview</version> </dependency>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. --> <!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. --> <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"> <parent> <artifactId>azure-storage-java</artifactId> <groupId>com.microsoft.azure</groupId> <version>10.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>azure-storage-queue</artifactId> <version>10.0.1-Preview</version> <name>Azure Storage Queue</name> <description>The Azure Storage Java Queue library.</description> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <legal> <![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal> </properties> <developers> <developer> <id>microsoft</id> <name>Microsoft</name> </developer> </developers> <build> <testSourceDirectory>src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <compilerArgument>-Xlint:unchecked</compilerArgument> <source>1.8</source> <target>1.8</target> <showDeprecation>true</showDeprecation> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>2.9.3-01</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>2.4.15-01</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.20.1</version> <configuration> <includes> <include>**/Test*.*</include> <include>**/*Test.*</include> <include>**/*Tests.*</include> <include>**/*Samples*.*</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <!-- force links to Java 8 documentation (should happen automatically but doesn't) --> <javaApiLinks> <property> <name>api_1.8</name> <value>https://docs.oracle.com/javase/8/docs/api/</value> </property> </javaApiLinks> <!-- add license notice --> <bottom> <![CDATA[This documentation was released into the public domain.]]> </bottom> <tags> <tag> <name>apiNote</name> <placement>m</placement> <head>API Note:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>