99 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.6 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-2</artifactId>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <name>spring-boot-mvc-2</name>
 | 
						|
    <description>Module For Spring Boot MVC Web Fn</description>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung.spring-boot-modules</groupId>
 | 
						|
        <artifactId>spring-boot-modules</artifactId>
 | 
						|
        <version>1.0.0-SNAPSHOT</version>
 | 
						|
        <relativePath>../</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-validation</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-devtools</artifactId>
 | 
						|
            <optional>true</optional>
 | 
						|
        </dependency>
 | 
						|
        <!-- Swagger dependencies for REST documentation -->
 | 
						|
        <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>
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.springfox</groupId>
 | 
						|
            <artifactId>springfox-spring-webmvc</artifactId>
 | 
						|
            <version>${spring.fox.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-data-jpa</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-databind</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.h2database</groupId>
 | 
						|
            <artifactId>h2</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.thoughtworks.xstream</groupId>
 | 
						|
            <artifactId>xstream</artifactId>
 | 
						|
            <version>${xstream.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
                <configuration>
 | 
						|
                    <mainClass>${start-class}</mainClass>
 | 
						|
                    <layout>JAR</layout>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <repositories>
 | 
						|
        <repository>
 | 
						|
            <id>jcenter-release</id>
 | 
						|
            <name>jcenter</name>
 | 
						|
            <url>http://oss.jfrog.org/artifactory/oss-release-local/</url>
 | 
						|
        </repository>
 | 
						|
    </repositories>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <spring.fox.version>3.0.0</spring.fox.version>
 | 
						|
        <start-class>com.baeldung.swagger2boot.SpringBootSwaggerApplication</start-class>
 | 
						|
        <!-- <start-class>com.baeldung.springbootmvc.SpringBootMvcFnApplication</start-class> -->
 | 
						|
        <xstream.version>1.4.11.1</xstream.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |