azure-spring-cloud-storage
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.spring</groupId> <artifactId>azure-spring-cloud-storage</artifactId> <version>2.14.0</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.7.0</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent;current} --> <relativePath>../../parents/azure-client-sdk-parent</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.azure.spring</groupId> <artifactId>azure-spring-cloud-storage</artifactId> <version>2.14.0</version> <!-- {x-version-update;com.azure.spring:azure-spring-cloud-storage;current} --> <name>Azure Spring Cloud Storage</name> <properties> <jacoco.min.linecoverage>0.3</jacoco.min.linecoverage> <!-- TODO: Remove this once all Javadoc warnings and errors are resolved --> <doclint>all,-missing</doclint> </properties> <dependencies> <dependency> <groupId>com.azure.spring</groupId> <artifactId>azure-spring-cloud-context</artifactId> <version>2.14.0</version> <!-- {x-version-update;com.azure.spring:azure-spring-cloud-context;current} --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot-configuration-processor;external_dependency} --> <optional>true</optional> </dependency> <!-- Storage Queue --> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-queue</artifactId> <version>12.11.4</version> <!-- {x-version-update;com.azure:azure-storage-queue;dependency} --> <optional>true</optional> </dependency> <dependency> <groupId>com.azure.spring</groupId> <artifactId>azure-spring-integration-storage-queue</artifactId> <version>2.14.0</version> <!-- {x-version-update;com.azure.spring:azure-spring-integration-storage-queue;current} --> <optional>true</optional> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-actuator-autoconfigure</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot-actuator-autoconfigure;external_dependency} --> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <version>6.2.0.Final</version> <!-- {x-version-update;org.hibernate.validator:hibernate-validator;external_dependency} --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot-starter-logging;external_dependency} --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot-starter-test;external_dependency} --> <scope>test</scope> </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> <!-- {x-version-update;com.google.code.findbugs:jsr305;external_dependency} --> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-enforcer-plugin;external_dependency} --> <configuration> <rules> <bannedDependencies> <includes> <include>org.hibernate.validator:hibernate-validator:[6.2.0.Final]</include> <!-- {x-include-update;org.hibernate.validator:hibernate-validator;external_dependency} --> <include>org.springframework.boot:spring-boot-actuator-autoconfigure:[2.6.2]</include> <!-- {x-include-update;org.springframework.boot:spring-boot-actuator-autoconfigure;external_dependency} --> <include>org.springframework.boot:spring-boot-configuration-processor:[2.6.2]</include> <!-- {x-include-update;org.springframework.boot:spring-boot-configuration-processor;external_dependency} --> <include>org.springframework.boot:spring-boot-starter-logging:[2.6.2]</include> <!-- {x-include-update;org.springframework.boot:spring-boot-starter-logging;external_dependency} --> </includes> </bannedDependencies> </rules> </configuration> </plugin> </plugins> </build> <profiles> <!-- Generate "spring-configuration-metadata.json" by annotation process --> <profile> <id>annotation-process-for-java-8</id> <activation> <jdk>[1.8,9)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} --> <executions> <execution> <id>annotation-process-for-java-8</id> <goals> <goal>compile</goal> </goals> <configuration> <compilerArgs> <arg>-proc:only</arg> <!-- Turn on annotation processing --> </compilerArgs> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>annotation-process-for-java-11</id> <activation> <jdk>[11,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} --> <executions> <execution> <id>annotation-process-for-java-11</id> <goals> <goal>compile</goal> </goals> <configuration> <compilerArgs> <arg>-proc:only</arg> <!-- Turn on annotation processing --> </compilerArgs> <release>11</release> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>