azure-storage-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage-spring-boot-autoconfigure</artifactId> <version>0.1.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>com.microsoft.azure</groupId> <artifactId>azure-spring-boot-starter-parent</artifactId> <version>0.1.5</version> <relativePath>../../common/azure-spring-boot-starter-parent/pom.xml</relativePath> </parent> <artifactId>azure-storage-spring-boot-autoconfigure</artifactId> <packaging>jar</packaging> <name>Azure Storage Spring Boot Autoconfigure</name> <description>Spring Boot auto configuration package for Azure Storage service</description> <url>https://github.com/Microsoft/azure-spring-boot-starters</url> <licenses> <license> <name>MIT</name> <url>https://github.com/Microsoft/azure-spring-boot-starters/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>ZhijunZhao</id> <name>Zhijun Zhao</name> <email>zhijzhao@microsoft.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/Microsoft/azure-spring-boot-starters.git</connection> <developerConnection>scm:git:ssh://github.com:Microsoft/azure-spring-boot-starters.git</developerConnection> <url>https://github.com/Microsoft/azure-spring-boot-starters/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> </dependencies> </project>