| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts-examples</artifactId> |
| <version>2.0.0</version> |
| </parent> |
| |
| <artifactId>bean-validation</artifactId> |
| <name>Bean Validation</name> |
| <description>bean (JSR 303) validation example application for the Apache Struts getting started tutorials</description> |
| |
| <packaging>war</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.hibernate.validator</groupId> |
| <artifactId>hibernate-validator</artifactId> |
| <version>9.1.3.Final</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>jakarta.el</groupId> |
| <artifactId>jakarta.el-api</artifactId> |
| <version>6.0.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.glassfish</groupId> |
| <artifactId>jakarta.el</artifactId> |
| <version>5.0.0-M1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-bean-validation-plugin</artifactId> |
| <version>${struts2.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <finalName>bean-validation</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-maven-plugin</artifactId> |
| <version>${jetty-plugin.version}</version> |
| <configuration> |
| <webApp> |
| <contextPath>/${project.artifactId}</contextPath> |
| </webApp> |
| <stopKey>CTRL+C</stopKey> |
| <stopPort>8999</stopPort> |
| <scan>10</scan> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |