2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 21:43:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-12-05 09:56:52 -05:00
|
|
|
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>spring-mvc-webflow</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<name>spring-mvc-webflow</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Spring Web Flow -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.webflow</groupId>
|
|
|
|
<artifactId>spring-webflow</artifactId>
|
|
|
|
<version>${spring.webflow}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- web -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${javax.servlet-api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>${jstl.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- Test -->
|
|
|
|
<dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>1.5.10.RELEASE</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>spring-mvc-webflow</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
2020-03-16 12:28:42 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.tomee.maven</groupId>
|
|
|
|
<artifactId>tomee-maven-plugin</artifactId>
|
|
|
|
<version>8.0.1</version>
|
|
|
|
<configuration>
|
|
|
|
<tomeeHttpPort>8080</tomeeHttpPort>
|
|
|
|
<context>spring-mvc-webflow</context>
|
|
|
|
<reloadOnUpdate>true</reloadOnUpdate>
|
|
|
|
<tomeeClassifier>plume</tomeeClassifier>
|
|
|
|
<synchronization>
|
|
|
|
<extensions>
|
|
|
|
<extension>.class</extension>
|
|
|
|
</extensions>
|
|
|
|
</synchronization>
|
|
|
|
<args>-Xmx2048m -XX:PermSize=256m -Dtomee.serialization.class.blacklist=- -Dtomee.serialization.class.whitelist=*</args>
|
|
|
|
<removeDefaultWebapps>true</removeDefaultWebapps>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-31 21:43:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>${maven-war-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- Spring -->
|
|
|
|
<org.springframework.version>5.0.1.RELEASE</org.springframework.version>
|
|
|
|
|
|
|
|
<!-- Spring Web Flow -->
|
|
|
|
<spring.webflow>2.5.0.RELEASE</spring.webflow>
|
|
|
|
|
|
|
|
<httpcore.version>4.4.5</httpcore.version>
|
|
|
|
<httpclient.version>4.5.2</httpclient.version>
|
|
|
|
|
|
|
|
<!-- Maven plugins -->
|
|
|
|
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
|
|
|
|
<cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|