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>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
2022-02-05 16:28:05 -05:00
|
|
|
<groupId>org.hibernate.validator</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<version>${hibernate-validator.version}</version>
|
|
|
|
</dependency>
|
2019-11-23 10:01:40 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
<version>${javax.el.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
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>
|
2022-09-13 11:52:49 -04:00
|
|
|
|
2022-02-07 15:04:22 -05:00
|
|
|
<!-- uncomment in order to enable Hibernate Validator Anotation Processor -->
|
2022-03-13 05:18:44 -04: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>
|
2022-07-16 15:17:36 -04:00
|
|
|
<hibernate-validator.version>6.2.3.Final</hibernate-validator.version>
|
2022-02-05 16:28:05 -05:00
|
|
|
<hibernate-validator.ap.version>6.2.0.Final</hibernate-validator.ap.version>
|
|
|
|
<maven.compiler.version>3.6.1</maven.compiler.version>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2019-12-05 09:56:52 -05:00
|
|
|
<javax.el.version>3.0.0</javax.el.version>
|
2022-07-16 15:17:36 -04:00
|
|
|
<org.springframework.version>5.3.21</org.springframework.version>
|
|
|
|
<spring.boot.version>2.7.1</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>
|