98 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.7 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>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.tomcat.embed</groupId>
 | |
| 			<artifactId>tomcat-embed-jasper</artifactId>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<!--JSF -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.glassfish</groupId>
 | |
| 			<artifactId>javax.faces</artifactId>
 | |
| 			<version>2.3.7</version>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<!--Test -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<!-- ROME for RSS -->
 | |
| 		<dependency>
 | |
| 			<groupId>com.rometools</groupId>
 | |
| 			<artifactId>rome</artifactId>
 | |
| 			<version>${rome.version}</version>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<!--Validation -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.hibernate.validator</groupId>
 | |
| 			<artifactId>hibernate-validator</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.validation</groupId>
 | |
| 			<artifactId>validation-api</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-validation</artifactId>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<!-- Spring Fox 2 -->
 | |
|         <dependency>
 | |
|             <groupId>io.springfox</groupId>
 | |
|             <artifactId>springfox-swagger2</artifactId>
 | |
|             <version>${spring.fox.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.springfox</groupId>
 | |
|             <artifactId>springfox-swagger-ui</artifactId>
 | |
|             <version>${spring.fox.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>
 | |
| 		<spring.fox.version>2.9.2</spring.fox.version>
 | |
| 		<!-- ROME for RSS -->
 | |
| 		<rome.version>1.10.0</rome.version>
 | |
| 		<start-class>com.baeldung.springbootmvc.SpringBootMvcApplication</start-class>
 | |
| 	</properties>
 | |
| 
 | |
| </project>
 |