2021-06-07 16:03:08 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-08-03 00:27:15 +05:30
|
|
|
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>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-boot-validation</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2021-06-07 16:03:08 +05:30
|
|
|
|
2021-08-03 00:27:15 +05:30
|
|
|
<parent>
|
2021-11-26 19:28:29 +05:30
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2021-06-08 12:16:37 +03:00
|
|
|
</parent>
|
2021-06-07 16:03:08 +05:30
|
|
|
|
2021-08-03 00:27:15 +05:30
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
</dependency>
|
2022-05-08 16:36:25 +05:30
|
|
|
<dependency>
|
2022-04-15 14:57:20 +05:30
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
</dependency>
|
2021-08-03 00:27:15 +05:30
|
|
|
</dependencies>
|
2021-06-07 16:03:08 +05:30
|
|
|
|
2021-08-03 00:27:15 +05:30
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-06-07 16:03:08 +05:30
|
|
|
|
2021-09-20 00:04:26 +05:30
|
|
|
</project>
|