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"
|
2023-08-28 11:29:54 -04:00
|
|
|
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>
|
2023-12-26 13:04:31 -05:00
|
|
|
<artifactId>parent-boot-3</artifactId>
|
2023-06-25 11:28:58 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-12-26 13:04:31 -05:00
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
2023-06-25 11:28:58 -04:00
|
|
|
</parent>
|
2023-05-31 15:56:50 -04:00
|
|
|
|
2023-12-26 13:04:31 -05: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>
|