88 lines
2.5 KiB
XML
88 lines
2.5 KiB
XML
<?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>
|
|
<artifactId>spring-boot-mvc</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>spring-boot-mvc</name>
|
|
<description>Module For Spring Boot MVC</description>
|
|
|
|
<parent>
|
|
<artifactId>parent-boot-2</artifactId>
|
|
<groupId>com.baeldung</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!--JSF-->
|
|
<dependency>
|
|
<groupId>com.sun.faces</groupId>
|
|
<artifactId>jsf-api</artifactId>
|
|
<version>2.2.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.faces</groupId>
|
|
<artifactId>javax.faces-api</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.faces</groupId>
|
|
<artifactId>jsf-impl</artifactId>
|
|
<version>2.2.8-02</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- ROME for RSS -->
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome</artifactId>
|
|
<version>${rome.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>com.baeldung.springbootmvc.SpringBootMvcApplication</mainClass>
|
|
<layout>JAR</layout>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<!-- ROME for RSS -->
|
|
<rome.version>1.10.0</rome.version>
|
|
<start-class>com.baeldung.springbootmvc.SpringBootMvcApplication</start-class>
|
|
</properties>
|
|
|
|
</project>
|