2018-05-15 23:29:40 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-boot-mvc</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>spring-boot-mvc</name>
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-08-05 13:47:35 -04:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
2018-05-15 23:29:40 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2018-09-16 01:12:26 -04:00
|
|
|
<!--JSF-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.faces</groupId>
|
|
|
|
<artifactId>jsf-api</artifactId>
|
2018-09-25 16:56:14 -04:00
|
|
|
<version>2.2.18</version>
|
2018-09-16 01:12:26 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.faces</groupId>
|
|
|
|
<artifactId>javax.faces-api</artifactId>
|
2018-09-25 16:56:14 -04:00
|
|
|
<version>2.3</version>
|
2018-09-16 01:12:26 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.faces</groupId>
|
|
|
|
<artifactId>jsf-impl</artifactId>
|
2018-09-25 16:56:14 -04:00
|
|
|
<version>2.2.18</version>
|
2018-09-16 01:12:26 -04:00
|
|
|
</dependency>
|
|
|
|
|
2018-05-15 23:29:40 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-08-04 10:58:15 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
2018-09-09 12:00:01 -04:00
|
|
|
|
|
|
|
<!-- ROME for RSS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
<version>${rome.version}</version>
|
|
|
|
</dependency>
|
2018-05-15 23:29:40 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-07-12 03:04:54 -04:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
2018-09-09 12:00:01 -04:00
|
|
|
<!-- ROME for RSS -->
|
|
|
|
<rome.version>1.10.0</rome.version>
|
2018-07-12 03:04:54 -04:00
|
|
|
</properties>
|
2018-05-15 23:29:40 -04:00
|
|
|
|
|
|
|
</project>
|