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

56 lines
1.8 KiB
XML
Raw Normal View History

2023-05-31 15:56:50 -04:00
<?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">
2023-06-25 11:28:58 -04:00
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-data-yugabytedb</artifactId>
<version>1.0</version>
<name>spring-data-yugabytedb</name>
<packaging>jar</packaging>
2023-05-31 15:56:50 -04:00
2023-06-25 11:28:58 -04:00
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-3</artifactId>
2023-06-25 11:28:58 -04:00
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-3</relativePath>
2023-06-25 11:28:58 -04:00
</parent>
2023-05-31 15:56:50 -04:00
<properties>
<start-class>com.baeldung.Main</start-class>
</properties>
2023-06-25 11:28:58 -04:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependencies>
2023-05-31 15:56:50 -04:00
2023-06-25 11:28:58 -04:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
2023-05-31 15:56:50 -04:00
</project>