azure-identity-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.spring</groupId> <artifactId>azure-identity-spring</artifactId> <version>1.14.0</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.azure</groupId> <artifactId>azure-client-sdk-parent</artifactId> <version>1.7.0</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent;current} --> <relativePath>../../parents/azure-client-sdk-parent</relativePath> </parent> <groupId>com.azure.spring</groupId> <artifactId>azure-identity-spring</artifactId> <version>1.14.0</version> <!-- {x-version-update;com.azure.spring:azure-identity-spring;current} --> <packaging>jar</packaging> <name>Azure Identity Spring Integration Library</name> <description>Azure Identity Spring Integration Library</description> <url>https://github.com/Azure/azure-sdk-for-java</url> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot;external_dependency} --> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.3.14</version> <!-- {x-version-update;org.springframework:spring-context;external_dependency} --> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.3.14</version> <!-- {x-version-update;org.springframework:spring-core;external_dependency} --> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> <version>1.4.4</version> <!-- {x-version-update;com.azure:azure-identity;dependency} --> </dependency> <!-- TEST--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.6.2</version> <!-- {x-version-update;org.springframework.boot:spring-boot-starter-test;external_dependency} --> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-enforcer-plugin;external_dependency} --> <configuration> <rules> <bannedDependencies> <includes> <include>org.springframework.boot:spring-boot:[2.6.2]</include> <!-- {x-include-update;org.springframework.boot:spring-boot;external_dependency} --> <include>org.springframework:spring-context:[5.3.14]</include> <!-- {x-include-update;org.springframework:spring-context;external_dependency} --> <include>org.springframework:spring-core:[5.3.14]</include> <!-- {x-include-update;org.springframework:spring-core;external_dependency} --> </includes> </bannedDependencies> </rules> </configuration> </plugin> </plugins> </build> </project>