azure-microprofile-config-keyvault
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.microprofile</groupId> <artifactId>azure-microprofile-config-keyvault</artifactId> <version>1.0.0-beta.3</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.azure.microprofile</groupId> <artifactId>azure-microprofile-parent</artifactId> <version>1.0.0-beta.3</version> <relativePath>../parent/pom.xml</relativePath> </parent> <groupId>com.azure.microprofile</groupId> <artifactId>azure-microprofile-config-keyvault</artifactId> <version>1.0.0-beta.3</version> <packaging>jar</packaging> <name>Azure extension for MicroProfile :: Config :: Key Vault</name> <description>Azure extension for MicroProfile Key Vault Custom ConfigSource.</description> <url>https://aka.ms/java/ee</url> <scm> <url>https://github.com/azure/azure-microprofile</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>com.azure.microprofile</groupId> <artifactId>azure-microprofile-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-security-keyvault-secrets</artifactId> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> </project>