298 строки
13 KiB
XML
298 строки
13 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>azure-maven-plugins</artifactId>
|
|
<version>1.18.0</version>
|
|
<packaging>pom</packaging>
|
|
<name>Maven Plugins for Azure</name>
|
|
<description>Maven plugins for Microsoft Azure services</description>
|
|
<url>https://github.com/microsoft/azure-maven-plugins</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/microsoft/azure-maven-plugins</connection>
|
|
<developerConnection>scm:git:git@github.com:microsoft/azure-maven-plugins</developerConnection>
|
|
<url>https://github.com/microsoft/azure-maven-plugins</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>xscript</id>
|
|
<name>Kevin Zhao</name>
|
|
<email>kevinzha@microsoft.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>ossrh</id>
|
|
<name>Sonatype Snapshots</name>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
<uniqueVersion>true</uniqueVersion>
|
|
<layout>default</layout>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<modules>
|
|
<module>build-tools</module>
|
|
<module>azure-toolkit-libs</module>
|
|
<module>azure-maven-plugin-lib</module>
|
|
<module>azure-webapp-maven-plugin</module>
|
|
<module>azure-functions-maven-plugin</module>
|
|
<module>azure-sfmesh-maven-plugin</module>
|
|
<module>azure-spring-cloud-maven-plugin</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.build.timestamp.format>yyyyMMddHHmmssSSS</maven.build.timestamp.format>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<maven.filtering.version>3.2.0</maven.filtering.version>
|
|
<maven.plugin-testing-harness.version>3.3.0</maven.plugin-testing-harness.version>
|
|
<maven.plugin-tools.version>3.3</maven.plugin-tools.version>
|
|
<maven.shared-utils.version>3.3.4</maven.shared-utils.version>
|
|
<maven3-model-jdom-support.version>1.6</maven3-model-jdom-support.version>
|
|
<maven.version>3.3.3</maven.version>
|
|
<maven.clean-plugin.version>3.1.0</maven.clean-plugin.version>
|
|
<maven.dependency-plugin.version>3.1.2</maven.dependency-plugin.version>
|
|
<maven.resources-plugin.version>3.0.2</maven.resources-plugin.version>
|
|
<maven.source-plugin.version>2.2.1</maven.source-plugin.version>
|
|
<maven.compiler-plugin.version>3.8.0</maven.compiler-plugin.version>
|
|
<maven.plugin-plugin.version>3.6.0</maven.plugin-plugin.version>
|
|
<maven.surefire-plugin.version>2.22.1</maven.surefire-plugin.version>
|
|
<maven.jar-plugin.version>3.0.2</maven.jar-plugin.version>
|
|
<maven.install-plugin.version>2.5.2</maven.install-plugin.version>
|
|
<maven.deploy-plugin.version>2.8.2</maven.deploy-plugin.version>
|
|
<maven.invoker-plugin.version>3.1.0</maven.invoker-plugin.version>
|
|
<maven.javadoc-plugin.version>2.9.1</maven.javadoc-plugin.version>
|
|
<maven.checkstyle-plugin.version>3.1.2</maven.checkstyle-plugin.version>
|
|
<maven.aspectj-plugin.version>1.12.6</maven.aspectj-plugin.version>
|
|
<azure.maven-plugin-lib.version>1.18.0</azure.maven-plugin-lib.version>
|
|
<jacoco.version>0.8.7</jacoco.version>
|
|
|
|
<json.schema-validator.version>1.0.56</json.schema-validator.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>azure-toolkit-libs</artifactId>
|
|
<version>0.19.0</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- manage dependencies only related to maven plugin -->
|
|
<dependency>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>azure-maven-plugin-lib</artifactId>
|
|
<version>${azure.maven-plugin-lib.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core</artifactId>
|
|
<version>${maven.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.google.errorprone</groupId>
|
|
<artifactId>error_prone_annotations</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>${maven.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
<artifactId>maven-filtering</artifactId>
|
|
<version>${maven.filtering.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-compat</artifactId>
|
|
<version>${maven.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.plugin-testing</groupId>
|
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
|
<version>${maven.plugin-testing-harness.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.commonjava.maven</groupId>
|
|
<artifactId>maven3-model-jdom-support</artifactId>
|
|
<version>${maven3-model-jdom-support.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
<artifactId>maven-shared-utils</artifactId>
|
|
<version>${maven.shared-utils.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
<version>${maven.plugin-tools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-settings</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-settings-builder</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model-builder</artifactId>
|
|
<version>${maven.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>org.jacoco.agent</artifactId>
|
|
<version>${jacoco.version}</version>
|
|
<classifier>runtime</classifier>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<!-- lock down plugins versions to avoid using Maven defaults (may be
|
|
moved to parent pom) -->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.nickwongdev</groupId>
|
|
<artifactId>aspectj-maven-plugin</artifactId>
|
|
<version>${maven.aspectj-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>${maven.clean-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>${maven.dependency-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>${maven.resources-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>${maven.source-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven.compiler-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
<version>${maven.plugin-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${maven.surefire-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven.jar-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>${maven.install-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>${maven.deploy-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
<version>${maven.invoker-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>${maven.javadoc-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>${jacoco.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${maven.checkstyle-plugin.version}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure</groupId>
|
|
<artifactId>maven-plugins-build-tools</artifactId>
|
|
<version>1.18.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
<artifactId>checkstyle</artifactId>
|
|
<version>8.43</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<configLocation>checkstyle/checkstyle.xml</configLocation>
|
|
<suppressionsLocation>checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
|
|
<headerLocation>checkstyle/java.header</headerLocation>
|
|
<encoding>UTF-8</encoding>
|
|
<consoleOutput>true</consoleOutput>
|
|
<failsOnError>true</failsOnError>
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
<linkXRef>false</linkXRef>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|