73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			73 lines
		
	
	
		
			2.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-5</artifactId>
							 | 
						||
| 
								 | 
							
								    <name>spring-boot-mvc-5</name>
							 | 
						||
| 
								 | 
							
								    <packaging>jar</packaging>
							 | 
						||
| 
								 | 
							
								    <description>Module For Spring Boot MVC Web</description>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <parent>
							 | 
						||
| 
								 | 
							
								        <groupId>com.baeldung.spring-boot-modules</groupId>
							 | 
						||
| 
								 | 
							
								        <artifactId>spring-boot-modules</artifactId>
							 | 
						||
| 
								 | 
							
								        <version>1.0.0-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								    </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-actuator</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.springframework.cloud</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>spring-cloud-starter</artifactId>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>commons-io</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>commons-io</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${commons-io.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>commons-configuration</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>commons-configuration</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>1.10</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								    </dependencies>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <dependencyManagement>
							 | 
						||
| 
								 | 
							
								        <dependencies>
							 | 
						||
| 
								 | 
							
								            <dependency>
							 | 
						||
| 
								 | 
							
								                <groupId>org.springframework.cloud</groupId>
							 | 
						||
| 
								 | 
							
								                <artifactId>spring-cloud-dependencies</artifactId>
							 | 
						||
| 
								 | 
							
								                <version>${spring-cloud.version}</version>
							 | 
						||
| 
								 | 
							
								                <type>pom</type>
							 | 
						||
| 
								 | 
							
								                <scope>import</scope>
							 | 
						||
| 
								 | 
							
								            </dependency>
							 | 
						||
| 
								 | 
							
								        </dependencies>
							 | 
						||
| 
								 | 
							
								    </dependencyManagement>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <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>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <properties>
							 | 
						||
| 
								 | 
							
								        <spring.fox.version>3.0.0</spring.fox.version>
							 | 
						||
| 
								 | 
							
								        <start-class>com.baeldung.springboot.swagger.ArticleApplication</start-class>
							 | 
						||
| 
								 | 
							
								        <spring-cloud.version>2021.0.5</spring-cloud.version>
							 | 
						||
| 
								 | 
							
								    </properties>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								</project>
							 |