azure-storage-file
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-file</artifactId> <version>12.0.0-preview.4</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/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.azure</groupId> <artifactId>azure-client-sdk-parent</artifactId> <version>1.5.0</version> <relativePath>../../../pom.client.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.azure</groupId> <artifactId>azure-storage-file</artifactId> <version>12.0.0-preview.4</version> <name>Microsoft Azure client library for File Storage</name> <description>This module contains client library for Microsoft Azure File Storage.</description> <url>https://github.com/Azure/azure-sdk-for-java</url> <distributionManagement> <site> <id>azure-java-build-docs</id> <url>${site.url}/site/${project.artifactId}</url> </site> </distributionManagement> <scm> <url>scm:git:https://github.com/Azure/azure-sdk-for-java</url> <connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection> <tag>HEAD</tag> </scm> <properties> <project.automatic.module.name>com.azure.storage.file</project.automatic.module.name> </properties> <dependencies> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core</artifactId> <version>1.0.0-preview.6</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-common</artifactId> <version>12.0.0-preview.4</version> </dependency> <!-- Added this dependency to include necessary annotations used by reactor core. Without this dependency, javadoc throws a warning as it cannot find enum When.MAYBE which is used in @Nullable annotation in reactor core classes --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-test</artifactId> <version>1.0.0-preview.6</version> <scope>test</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-http-netty</artifactId> <version>1.0.0-preview.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>java8</id> <activation> <jdk>[1.8,9)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> <showWarnings>true</showWarnings> <failOnWarning>true</failOnWarning> <compilerArgs> <arg>-Xlint:all</arg> <arg>-Xlint:-serial</arg> <arg>-Xlint:-deprecation</arg> <arg>-Xlint:-processing</arg> </compilerArgs> <excludes> <exclude>module-info.java</exclude> </excludes> </configuration> <executions> <execution> <id>test-compile</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> </configuration> </execution> <execution> <id>default-testCompile</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>${groovy-eclipse-compiler.version}</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>${groovy-eclipse-batch.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> </plugins> </build> </profile> <profile> <id>java9plus</id> <activation> <jdk>[9,)</jdk> </activation> <build> <plugins> <plugin> <!-- Skip maven compiler and use gmavenplus plugin instead --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>9</source> <target>9</target> </configuration> <executions> <execution> <id>test-compile</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <release>8</release> </configuration> </execution> <execution> <id>default-testCompile</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <release>8</release> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>${groovy-eclipse-compiler.version}</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>${groovy-eclipse-batch.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine> --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED --add-exports com.azure.core/com.azure.core.implementation.serializer.jackson=ALL-UNNAMED --add-exports com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED --add-opens com.azure.storage.file/com.azure.storage.file=ALL-UNNAMED --add-opens com.azure.storage.file/com.azure.storage.file.implementation=ALL-UNNAMED --add-opens com.azure.storage.file/com.azure.storage.file.models=ALL-UNNAMED </argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>