112 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			4.0 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-mvc-java-2</artifactId>
 | 
						|
    <version>0.1-SNAPSHOT</version>
 | 
						|
    <name>spring-mvc-java-2</name>
 | 
						|
    <packaging>war</packaging>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-boot-3</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../../parent-boot-3</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-webmvc</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-databind</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-io</groupId>
 | 
						|
            <artifactId>commons-io</artifactId>
 | 
						|
            <version>${commons-io.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.sun.xml.bind</groupId>
 | 
						|
            <artifactId>jaxb-impl</artifactId>
 | 
						|
            <version>${jaxb-runtime.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>net.sourceforge.htmlunit</groupId>
 | 
						|
            <artifactId>htmlunit</artifactId>
 | 
						|
            <version>${htmlunit.version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>commons-logging</artifactId>
 | 
						|
                    <groupId>commons-logging</groupId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <groupId>commons-io</groupId>
 | 
						|
                    <artifactId>commons-io</artifactId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <!-- excel -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.poi</groupId>
 | 
						|
            <artifactId>poi-ooxml</artifactId>
 | 
						|
            <version>${poi.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.glassfish</groupId>
 | 
						|
            <artifactId>javax.el</artifactId>
 | 
						|
            <version>${javax.el.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet.jsp</groupId>
 | 
						|
            <artifactId>javax.servlet.jsp-api</artifactId>
 | 
						|
            <version>${javax-servlet-api.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet</groupId>
 | 
						|
            <artifactId>jstl</artifactId>
 | 
						|
            <version>${jstl.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.tomcat.embed</groupId>
 | 
						|
            <artifactId>tomcat-embed-jasper</artifactId>
 | 
						|
            <scope>provided</scope>
 | 
						|
        </dependency>
 | 
						|
        <!-- Thymeleaf -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.thymeleaf</groupId>
 | 
						|
            <artifactId>thymeleaf-spring5</artifactId>
 | 
						|
            <version>${thymeleaf.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.thymeleaf</groupId>
 | 
						|
            <artifactId>thymeleaf</artifactId>
 | 
						|
            <version>${thymeleaf.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>spring-mvc-java-2</finalName>
 | 
						|
        <resources>
 | 
						|
            <resource>
 | 
						|
                <directory>src/main/resources</directory>
 | 
						|
                <filtering>true</filtering>
 | 
						|
            </resource>
 | 
						|
        </resources>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <jaxb-runtime.version>4.0.1</jaxb-runtime.version>
 | 
						|
        <htmlunit.version>2.32</htmlunit.version>
 | 
						|
        <poi.version>3.16-beta1</poi.version>
 | 
						|
        <javax.el.version>3.0.1-b09</javax.el.version>
 | 
						|
        <javax-servlet-api.version>2.3.3</javax-servlet-api.version>
 | 
						|
        <thymeleaf.version>3.1.2.RELEASE</thymeleaf.version>
 | 
						|
        <spring-boot.repackage.skip>true</spring-boot.repackage.skip>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |