2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:51:04 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-11-23 18:13:52 -05:00
|
|
|
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>vraptor</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>vraptor</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>war</packaging>
|
|
|
|
<description>A demo project to start using VRaptor 4</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-08-21 05:14:00 -04:00
|
|
|
<artifactId>web-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>br.com.caelum</groupId>
|
|
|
|
<artifactId>vraptor</artifactId>
|
|
|
|
<version>${vraptor.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.weld.servlet</groupId>
|
|
|
|
<artifactId>weld-servlet-core</artifactId>
|
|
|
|
<version>${weld.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.spec.javax.el</groupId>
|
|
|
|
<artifactId>jboss-el-api_3.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.weld</groupId>
|
|
|
|
<artifactId>weld-core-impl</artifactId>
|
|
|
|
<version>${weld.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.spec.javax.el</groupId>
|
|
|
|
<artifactId>jboss-el-api_3.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>el-api</artifactId>
|
|
|
|
<version>${el.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-14 01:54:10 -05:00
|
|
|
<groupId>org.hibernate.validator</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>hibernate-validator-cdi</artifactId>
|
|
|
|
<version>${hibernate-validator.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>${jstl.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${javax.servlet-api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2021-09-16 13:04:26 -04:00
|
|
|
<version>${org.slf4j.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>br.com.caelum.vraptor</groupId>
|
|
|
|
<artifactId>vraptor-freemarker</artifactId>
|
|
|
|
<version>${vraptor-freemarker.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>br.com.caelum.vraptor</groupId>
|
|
|
|
<artifactId>vraptor-hibernate</artifactId>
|
|
|
|
<version>${vraptor-hibernate.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-21 00:17:34 -05:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>${mysql-connector.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mindrot</groupId>
|
|
|
|
<artifactId>jbcrypt</artifactId>
|
|
|
|
<version>${jbcrypt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
<version>${freemarker.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>vraptor</finalName>
|
|
|
|
<outputDirectory>src/main/webapp/WEB-INF/classes</outputDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
|
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
|
|
<version>${tomcat7-maven-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<path>/</path>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<vraptor.version>4.2.0.Final</vraptor.version>
|
|
|
|
<weld.version>2.1.2.Final</weld.version>
|
|
|
|
<el.version>2.2</el.version>
|
2023-11-14 01:54:10 -05:00
|
|
|
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<vraptor-freemarker.version>4.1.0-RC3</vraptor-freemarker.version>
|
|
|
|
<vraptor-hibernate.version>4.0.4</vraptor-hibernate.version>
|
2023-11-21 00:17:34 -05:00
|
|
|
<mysql-connector.version>8.2.0</mysql-connector.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<jbcrypt.version>0.4</jbcrypt.version>
|
|
|
|
<freemarker.version>2.3.27-incubating</freemarker.version>
|
|
|
|
<tomcat7-maven-plugin.version>2.1</tomcat7-maven-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|