|
| 1 | +<!-- |
| 2 | + ~ Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | + ~ Licensed under the MIT License. |
| 4 | + --> |
| 5 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 6 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 7 | + <modelVersion>4.0.0</modelVersion> |
| 8 | + <parent> |
| 9 | + <groupId>com.azure</groupId> |
| 10 | + <artifactId>azure-client-sdk-parent</artifactId> |
| 11 | + <version>1.7.0</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent;current} --> |
| 12 | + <relativePath>../../parents/azure-client-sdk-parent</relativePath> |
| 13 | + </parent> |
| 14 | + |
| 15 | + <groupId>com.azure</groupId> |
| 16 | + <artifactId>azure-core-http-vertx</artifactId> |
| 17 | + <packaging>jar</packaging> |
| 18 | + <version>1.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-core-http-vertx;current} --> |
| 19 | + |
| 20 | + <name>Microsoft Azure Vert.x HTTP Client Library</name> |
| 21 | + <description>This package contains the Vert.x HTTP client plugin for azure-core.</description> |
| 22 | + <url>https://github.com/Azure/azure-sdk-for-java</url> |
| 23 | + |
| 24 | + <licenses> |
| 25 | + <license> |
| 26 | + <name>The MIT License (MIT)</name> |
| 27 | + <url>http://opensource.org/licenses/MIT</url> |
| 28 | + <distribution>repo</distribution> |
| 29 | + </license> |
| 30 | + </licenses> |
| 31 | + |
| 32 | + <distributionManagement> |
| 33 | + <site> |
| 34 | + <id>azure-java-build-docs</id> |
| 35 | + <url>${site.url}/site/${project.artifactId}</url> |
| 36 | + </site> |
| 37 | + </distributionManagement> |
| 38 | + |
| 39 | + <scm> |
| 40 | + <url>https://github.com/Azure/azure-sdk-for-java</url> |
| 41 | + <connection>scm:git:https://github.com/Azure/azure-sdk-for-java.git</connection> |
| 42 | + <developerConnection>scm:git:https://github.com/Azure/azure-sdk-for-java.git</developerConnection> |
| 43 | + </scm> |
| 44 | + |
| 45 | + <properties> |
| 46 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 47 | + <legal><![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal> |
| 48 | + <jacoco.min.linecoverage>0.80</jacoco.min.linecoverage> |
| 49 | + <jacoco.min.branchcoverage>0.80</jacoco.min.branchcoverage> |
| 50 | + <javaModulesSurefireArgLine> |
| 51 | + --add-opens com.azure.core.http.vertx/com.azure.core.http.vertx=ALL-UNNAMED |
| 52 | + --add-opens com.azure.core.http.vertx/com.azure.core.http.vertx.implementation=ALL-UNNAMED |
| 53 | + </javaModulesSurefireArgLine> |
| 54 | + </properties> |
| 55 | + |
| 56 | + <developers> |
| 57 | + <developer> |
| 58 | + <id>microsoft</id> |
| 59 | + <name>Microsoft</name> |
| 60 | + </developer> |
| 61 | + </developers> |
| 62 | + |
| 63 | + <dependencies> |
| 64 | + <dependency> |
| 65 | + <groupId>com.azure</groupId> |
| 66 | + <artifactId>azure-core</artifactId> |
| 67 | + <version>1.30.0-beta.1</version> <!-- {x-version-update;com.azure:azure-core;current} --> |
| 68 | + </dependency> |
| 69 | + |
| 70 | + <!-- Required to satisfy the -Xlint:classfile compiler option --> |
| 71 | + <dependency> |
| 72 | + <groupId>io.vertx</groupId> |
| 73 | + <artifactId>vertx-codegen</artifactId> |
| 74 | + <version>4.2.7</version> <!-- {x-version-update;io.vertx:vertx-codegen;external_dependency} --> |
| 75 | + <scope>provided</scope> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>io.vertx</groupId> |
| 80 | + <artifactId>vertx-core</artifactId> |
| 81 | + <version>4.2.7</version> <!-- {x-version-update;io.vertx:vertx-core;external_dependency} --> |
| 82 | + </dependency> |
| 83 | + |
| 84 | + <!-- test dependencies on azure-core, because we want to run tests inherited from this module using Vert.x Web Client --> |
| 85 | + <dependency> |
| 86 | + <groupId>com.azure</groupId> |
| 87 | + <artifactId>azure-core</artifactId> |
| 88 | + <version>1.30.0-beta.1</version> <!-- {x-version-update;com.azure:azure-core;current} --> |
| 89 | + <type>test-jar</type> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>com.azure</groupId> |
| 94 | + <artifactId>azure-core-test</artifactId> |
| 95 | + <version>1.10.0-beta.1</version> <!-- {x-version-update;com.azure:azure-core-test;current} --> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>com.azure</groupId> |
| 100 | + <artifactId>azure-core-test</artifactId> |
| 101 | + <version>1.10.0-beta.1</version> <!-- {x-version-update;com.azure:azure-core-test;current} --> |
| 102 | + <type>test-jar</type> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>io.projectreactor</groupId> |
| 107 | + <artifactId>reactor-test</artifactId> |
| 108 | + <version>3.4.17</version> <!-- {x-version-update;io.projectreactor:reactor-test;external_dependency} --> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + |
| 112 | + <dependency> |
| 113 | + <groupId>org.junit.jupiter</groupId> |
| 114 | + <artifactId>junit-jupiter-api</artifactId> |
| 115 | + <version>5.8.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-api;external_dependency} --> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.junit.jupiter</groupId> |
| 120 | + <artifactId>junit-jupiter-engine</artifactId> |
| 121 | + <version>5.8.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-engine;external_dependency} --> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.junit.jupiter</groupId> |
| 126 | + <artifactId>junit-jupiter-params</artifactId> |
| 127 | + <version>5.8.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-params;external_dependency} --> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + |
| 131 | + <dependency> |
| 132 | + <groupId>com.github.tomakehurst</groupId> |
| 133 | + <artifactId>wiremock-standalone</artifactId> |
| 134 | + <version>2.24.1</version> <!-- {x-version-update;com.github.tomakehurst:wiremock-standalone;external_dependency} --> |
| 135 | + <scope>test</scope> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>org.mockito</groupId> |
| 139 | + <artifactId>mockito-inline</artifactId> |
| 140 | + <version>4.0.0</version><!-- {x-version-update;org.mockito:mockito-inline;external_dependency} --> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
| 143 | + </dependencies> |
| 144 | + |
| 145 | + <build> |
| 146 | + <plugins> |
| 147 | + <plugin> |
| 148 | + <groupId>org.apache.maven.plugins</groupId> |
| 149 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 150 | + <version>3.0.0-M3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-enforcer-plugin;external_dependency} --> |
| 151 | + <configuration> |
| 152 | + <rules> |
| 153 | + <bannedDependencies> |
| 154 | + <includes> |
| 155 | + <include>io.vertx:vertx-codegen:[4.2.7]</include> <!-- {x-include-update;io.vertx:vertx-codegen;external_dependency} --> |
| 156 | + <include>io.vertx:vertx-core:[4.2.7]</include> <!-- {x-include-update;io.vertx:vertx-core;external_dependency} --> |
| 157 | + </includes> |
| 158 | + </bannedDependencies> |
| 159 | + </rules> |
| 160 | + </configuration> |
| 161 | + </plugin> |
| 162 | + |
| 163 | + <plugin> |
| 164 | + <groupId>org.apache.maven.plugins</groupId> |
| 165 | + <artifactId>maven-compiler-plugin</artifactId> |
| 166 | + <version>3.8.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} --> |
| 167 | + <configuration> |
| 168 | + <compilerArgs> |
| 169 | + <arg>-Xlint:deprecation</arg> |
| 170 | + </compilerArgs> |
| 171 | + </configuration> |
| 172 | + </plugin> |
| 173 | + </plugins> |
| 174 | + </build> |
| 175 | +</project> |
0 commit comments