github.com/Azure/aad-pod-identity@v1.8.17/examples/java-blob/pom.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3  	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
     4  	<modelVersion>4.0.0</modelVersion>
     5  	<parent>
     6  		<groupId>org.springframework.boot</groupId>
     7  		<artifactId>spring-boot-starter-parent</artifactId>
     8  		<version>2.4.0</version>
     9  		<relativePath/> <!-- lookup parent from repository -->
    10  	</parent>
    11  	<groupId>com.microsoft.cse</groupId>
    12  	<artifactId>storageexample</artifactId>
    13  	<version>0.0.1-SNAPSHOT</version>
    14  	<name>storageexample</name>
    15  	<description>Demo project for Spring Boot</description>
    16  
    17  	<properties>
    18  		<java.version>1.8</java.version>
    19  	</properties>
    20  
    21  	<dependencies>
    22  		<dependency>
    23  			<groupId>org.springframework.boot</groupId>
    24  			<artifactId>spring-boot-starter-web</artifactId>
    25  		</dependency>
    26  
    27  		<dependency>
    28  			<groupId>org.springframework.boot</groupId>
    29  			<artifactId>spring-boot-starter-test</artifactId>
    30  			<scope>test</scope>
    31  		</dependency>
    32  
    33  		<dependency>
    34  			<groupId>com.microsoft.azure</groupId>
    35  			<artifactId>spring-starter-azure-storage</artifactId>
    36  			<version>1.2.8</version>
    37  		</dependency>
    38  
    39  		<dependency>
    40  			<groupId>com.azure</groupId>
    41  			<artifactId>azure-identity</artifactId>
    42  			<version>1.1.2</version>
    43  		</dependency>
    44  	</dependencies>
    45  
    46  	<build>
    47  		<plugins>
    48  			<plugin>
    49  				<groupId>org.springframework.boot</groupId>
    50  				<artifactId>spring-boot-maven-plugin</artifactId>
    51  			</plugin>
    52  		</plugins>
    53  	</build>
    54  
    55  </project>