2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-08 03:41:36 -04:00
|
|
|
<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 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>javaxval</artifactId>
|
|
|
|
<name>javaxval</name>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-07-16 15:17:36 -04: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 21:43:47 -04:00
|
|
|
</dependencies>
|
2023-04-07 13:02:01 -04:00
|
|
|
|
2022-02-07 15:04:22 -05:00
|
|
|
<!-- uncomment in order to enable Hibernate Validator Anotation Processor -->
|
2022-11-17 13:56:06 -05:00
|
|
|
<!-- <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 15:04:22 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<properties>
|
2023-11-04 03:29:59 -04:00
|
|
|
<hibernate-validator.ap.version>8.0.1.Final</hibernate-validator.ap.version>
|
2023-04-11 05:04:58 -04:00
|
|
|
<spring.boot.version>3.0.4</spring.boot.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
</properties>
|
2021-09-19 14:34:26 -04:00
|
|
|
|
2022-03-13 05:18:44 -04:00
|
|
|
</project>
|