java-tutorials/persistence-modules/spring-data-cosmosdb/pom.xml

51 lines
1.7 KiB
XML
Raw Normal View History

2020-07-26 07:21:40 -04:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
2020-07-29 16:24:23 -04:00
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-data-cosmosdb</artifactId>
<name>spring-data-cosmosdb</name>
2020-07-29 16:24:23 -04:00
<description>tutorial for spring-data-cosmosdb</description>
<parent>
<groupId>com.baeldung</groupId>
2020-07-29 16:44:27 -04:00
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
2020-07-29 16:24:23 -04:00
</parent>
2020-07-29 16:44:27 -04:00
2020-07-29 16:24:23 -04:00
<properties>
2020-07-29 16:44:27 -04:00
<cosmodb.version>2.3.0</cosmodb.version>
2020-07-29 16:24:23 -04:00
</properties>
2020-07-29 16:44:27 -04:00
2020-07-29 16:24:23 -04:00
<dependencies>
<dependency>
2020-07-29 16:44:27 -04:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>spring-data-cosmosdb</artifactId>
<version>${cosmodb.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
2020-07-29 16:24:23 -04:00
</dependencies>
2020-07-29 16:44:27 -04:00
2020-07-29 16:24:23 -04:00
<build>
2020-07-29 16:33:32 -04:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
2020-07-29 16:24:23 -04:00
</build>
2020-07-26 07:21:40 -04:00
</project>