azure-spring-boot/pom.xml

192 строки
8.5 KiB
XML

<?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>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-spring-boot-starter-bom</artifactId>
<version>0.1.3</version>
<packaging>pom</packaging>
<name>Azure Spring Boot Starter BOM</name>
<description>BOM for Microsoft Azure Spring Boot Starters</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>
<developer>
<id>yungez</id>
<name>Yunge Zhu</name>
<email>yungez@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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.boot.version>1.5.4.RELEASE</spring.boot.version>
<java.version>1.8</java.version>
<azure.doucmentdb.starter.version>0.1.3</azure.doucmentdb.starter.version>
<azure.doucmentdb.autoconfigure.version>0.1.3</azure.doucmentdb.autoconfigure.version>
<spring.data.documentdb.version>0.1.3</spring.data.documentdb.version>
<azure.storage.starter.version>0.1.3</azure.storage.starter.version>
<azure.storage.autoconfigure.version>0.1.3</azure.storage.autoconfigure.version>
<azure.servicebus.autoconfigure.version>0.1.3</azure.servicebus.autoconfigure.version>
<azure.servicebus.starter.version>0.1.3</azure.servicebus.starter.version>
<azure.mediaservices.starter.version>0.1.3</azure.mediaservices.starter.version>
<azure.mediaservices.autoconfigure.version>0.1.3</azure.mediaservices.autoconfigure.version>
<azure.documentdb.version>1.11.0</azure.documentdb.version>
<azure.servicebus.version>1.0.0-PREVIEW-3</azure.servicebus.version>
<azure.storage.version>5.3.1</azure.storage.version>
<azure.media.version>0.9.7</azure.media.version>
<maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
<maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
<maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version>
<findbugs-maven-plugin.version>3.0.0</findbugs-maven-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb-spring-boot-autoconfigure</artifactId>
<version>${azure.doucmentdb.autoconfigure.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb-spring-boot-starter</artifactId>
<version>${azure.doucmentdb.starter.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage-spring-boot-autoconfigure</artifactId>
<version>${azure.storage.autoconfigure.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage-spring-boot-starter</artifactId>
<version>${azure.storage.starter.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-servicebus-spring-boot-autoconfigure</artifactId>
<version>${azure.servicebus.autoconfigure.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-servicebus-spring-boot-starter</artifactId>
<version>${azure.servicebus.starter.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>spring-data-azure-documentdb</artifactId>
<version>${spring.data.documentdb.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mediaservices-spring-boot-autoconfigure</artifactId>
<version>${azure.mediaservices.autoconfigure.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-mediaservices-spring-boot-starter</artifactId>
<version>${azure.mediaservices.starter.version}</version>
</dependency>
<!-- Azure related -->
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb</artifactId>
<version>${azure.documentdb.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-servicebus</artifactId>
<version>${azure.servicebus.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>${azure.storage.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-media</artifactId>
<version>${azure.media.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>azure-spring-boot-starter-parent</module>
</modules>
</project>