|
| 1 | +<!-- Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | + Licensed under the MIT License. --> |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + <parent> |
| 8 | + <groupId>com.azure</groupId> |
| 9 | + <artifactId>azure-client-sdk-parent</artifactId> |
| 10 | + <version>1.7.0</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent;current} --> |
| 11 | + <relativePath>../../parents/azure-client-sdk-parent/pom.xml</relativePath> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <groupId>com.azure</groupId> |
| 15 | + <artifactId>azure-messaging-webpubsub</artifactId> |
| 16 | + <version>1.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-messaging-webpubsub;current} --> |
| 17 | + |
| 18 | + <name>Microsoft Azure client library for Azure Web Pub Sub Service</name> |
| 19 | + <description>This package contains the Microsoft Azure Web Pub Sub library.</description> |
| 20 | + <url>https://github.com/Azure/azure-sdk-for-java</url> |
| 21 | + |
| 22 | + <distributionManagement> |
| 23 | + <site> |
| 24 | + <id>azure-java-build-docs</id> |
| 25 | + <url>${site.url}/site/${project.artifactId}</url> |
| 26 | + </site> |
| 27 | + </distributionManagement> |
| 28 | + |
| 29 | + <scm> |
| 30 | + <url>scm:git:https://github.com/Azure/azure-sdk-for-java</url> |
| 31 | + < connection>scm:git: [email protected]:Azure/azure-sdk-for-java.git</ connection> |
| 32 | + <tag>HEAD</tag> |
| 33 | + </scm> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <!-- Once full testing is added this should either be removed or increased --> |
| 37 | + <jacoco.min.linecoverage>0.10</jacoco.min.linecoverage> |
| 38 | + <jacoco.min.branchcoverage>0.10</jacoco.min.branchcoverage> |
| 39 | + </properties> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>com.azure</groupId> |
| 44 | + <artifactId>azure-core</artifactId> |
| 45 | + <version>1.14.1</version> <!-- {x-version-update;com.azure:azure-core;dependency} --> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.azure</groupId> |
| 49 | + <artifactId>azure-core-http-netty</artifactId> |
| 50 | + <version>1.9.0</version> <!-- {x-version-update;com.azure:azure-core-http-netty;dependency} --> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.nimbusds</groupId> |
| 54 | + <artifactId>nimbus-jose-jwt</artifactId> |
| 55 | + <version>8.20.2</version> <!-- {x-version-update;com.nimbusds:nimbus-jose-jwt;external_dependency} --> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <!-- Test dependencies --> |
| 59 | + <dependency> |
| 60 | + <groupId>com.azure</groupId> |
| 61 | + <artifactId>azure-core-test</artifactId> |
| 62 | + <version>1.6.0</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} --> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.junit.jupiter</groupId> |
| 67 | + <artifactId>junit-jupiter-api</artifactId> |
| 68 | + <version>5.7.1</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-api;external_dependency} --> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.junit.jupiter</groupId> |
| 73 | + <artifactId>junit-jupiter-engine</artifactId> |
| 74 | + <version>5.7.1</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-engine;external_dependency} --> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.junit.jupiter</groupId> |
| 79 | + <artifactId>junit-jupiter-params</artifactId> |
| 80 | + <version>5.7.1</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-params;external_dependency} --> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.hamcrest</groupId> |
| 85 | + <artifactId>hamcrest-library</artifactId> |
| 86 | + <version>2.2</version> <!-- {x-version-update;org.hamcrest:hamcrest-library;external_dependency} --> |
| 87 | + <scope>test</scope> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>io.projectreactor</groupId> |
| 91 | + <artifactId>reactor-test</artifactId> |
| 92 | + <version>3.4.3</version> <!-- {x-version-update;io.projectreactor:reactor-test;external_dependency} --> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>com.azure</groupId> |
| 97 | + <artifactId>azure-identity</artifactId> |
| 98 | + <version>1.2.4</version> <!-- {x-version-update;com.azure:azure-identity;dependency} --> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + |
| 102 | + <dependency> |
| 103 | + <groupId>javax.websocket</groupId> |
| 104 | + <artifactId>javax.websocket-api</artifactId> |
| 105 | + <version>1.1</version> <!-- {x-version-update;javax.websocket:javax.websocket-api;external_dependency} --> |
| 106 | + <scope>test</scope> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>org.glassfish.tyrus.bundles</groupId> |
| 110 | + <artifactId>tyrus-standalone-client</artifactId> |
| 111 | + <version>1.16</version> <!-- {x-version-update;org.glassfish.tyrus.bundles:tyrus-standalone-client;external_dependency} --> |
| 112 | + <scope>test</scope> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>org.glassfish.tyrus</groupId> |
| 116 | + <artifactId>tyrus-container-grizzly</artifactId> |
| 117 | + <version>1.2.1</version> <!-- {x-version-update;org.glassfish.tyrus:tyrus-container-grizzly;external_dependency} --> |
| 118 | + <scope>test</scope> |
| 119 | + </dependency> |
| 120 | + </dependencies> |
| 121 | + |
| 122 | + <build> |
| 123 | + <plugins> |
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 127 | + <version>3.0.0-M3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-enforcer-plugin;external_dependency} --> |
| 128 | + <configuration> |
| 129 | + <rules> |
| 130 | + <bannedDependencies> |
| 131 | + <includes> |
| 132 | + <include>com.azure:*</include> |
| 133 | + <include>com.nimbusds:nimbus-jose-jwt:[8.20.2]</include> <!-- {x-include-update;com.nimbusds:nimbus-jose-jwt;external_dependency} --> |
| 134 | + </includes> |
| 135 | + </bannedDependencies> |
| 136 | + </rules> |
| 137 | + </configuration> |
| 138 | + </plugin> |
| 139 | + </plugins> |
| 140 | + </build> |
| 141 | +</project> |
0 commit comments