2019-12-05 16:56:52 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-08 13:11:36 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>javaxval</artifactId>
|
|
|
|
<name>javaxval</name>
|
2019-12-05 16:56:52 +02:00
|
|
|
|
2019-10-31 20:43:47 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-07-17 05:17:36 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 20:43:47 -05:00
|
|
|
</dependencies>
|
2023-04-07 22:32:01 +05:30
|
|
|
|
2022-02-07 20:04:22 +00:00
|
|
|
<!-- uncomment in order to enable Hibernate Validator Anotation Processor -->
|
2022-11-18 00:26:06 +05:30
|
|
|
<!-- <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> -->
|
|
|
|
<!--<version>${maven.compiler.version}</version> <configuration> <source>${maven.compiler.source}</source> -->
|
|
|
|
<!--<target>${maven.compiler.target}</target> <fork>true</fork> <compilerArgs> <arg>-Averbose=true</arg> -->
|
|
|
|
<!--<arg>-AmethodConstraintsSupported=true</arg> <arg>-AdiagnosticKind=ERROR</arg> </compilerArgs> -->
|
|
|
|
<!--<annotationProcessorPaths> -->
|
|
|
|
<!--<path> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator-annotation-processor</artifactId> -->
|
|
|
|
<!--<version>${hibernate-validator.ap.version}</version> </path> </annotationProcessorPaths> </configuration> -->
|
|
|
|
<!--</plugin> </plugins> </build> -->
|
2022-02-07 20:04:22 +00:00
|
|
|
|
2019-10-31 20:43:47 -05:00
|
|
|
<properties>
|
2022-02-05 21:28:05 +00:00
|
|
|
<hibernate-validator.ap.version>6.2.0.Final</hibernate-validator.ap.version>
|
2023-04-11 12:04:58 +03:00
|
|
|
<spring.boot.version>3.0.4</spring.boot.version>
|
2019-12-05 16:56:52 +02:00
|
|
|
</properties>
|
2021-09-20 00:04:26 +05:30
|
|
|
|
2022-03-13 14:48:44 +05:30
|
|
|
</project>
|