Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
		
			
				
	
	
		
			117 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.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-mvc-views</artifactId>
 | 
						|
    <name>spring-mvc-views</name>
 | 
						|
    <packaging>war</packaging>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-spring-5</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../../parent-spring-5</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-webmvc</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-context</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet</groupId>
 | 
						|
            <artifactId>javax.servlet-api</artifactId>
 | 
						|
            <version>${javax.servlet-api.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet.jsp</groupId>
 | 
						|
            <artifactId>javax.servlet.jsp-api</artifactId>
 | 
						|
            <version>${javax.servlet.jsp-api.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet</groupId>
 | 
						|
            <artifactId>jstl</artifactId>
 | 
						|
            <version>${jstl.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.data</groupId>
 | 
						|
            <artifactId>spring-data-jpa</artifactId>
 | 
						|
            <version>${spring.data.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.hibernate</groupId>
 | 
						|
            <artifactId>hibernate-core</artifactId>
 | 
						|
            <version>${hibernate.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.hsqldb</groupId>
 | 
						|
            <artifactId>hsqldb</artifactId>
 | 
						|
            <version>${hsqldb.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.security</groupId>
 | 
						|
            <artifactId>spring-security-web</artifactId>
 | 
						|
            <version>${spring.security.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.security</groupId>
 | 
						|
            <artifactId>spring-security-config</artifactId>
 | 
						|
            <version>${spring.security.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.security</groupId>
 | 
						|
            <artifactId>spring-security-taglibs</artifactId>
 | 
						|
            <version>${spring.security.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.tiles</groupId>
 | 
						|
            <artifactId>tiles-jsp</artifactId>
 | 
						|
            <version>${apache-tiles.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>spring-mvc-views</finalName>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-compiler-plugin</artifactId>
 | 
						|
                <version>2.0.2</version>
 | 
						|
                <configuration>
 | 
						|
                    <source>${java.version}</source>
 | 
						|
                    <target>${java.version}</target>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-war-plugin</artifactId>
 | 
						|
                <version>${maven-war-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <warSourceDirectory>src/main/webapp</warSourceDirectory>
 | 
						|
                    <warName>spring-mvc-views</warName>
 | 
						|
                    <failOnMissingWebXml>false</failOnMissingWebXml>
 | 
						|
                    <outputDirectory>${deploy-path}</outputDirectory>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <spring.version>5.2.1.RELEASE</spring.version>
 | 
						|
        <spring.security.version>5.2.1.RELEASE</spring.security.version>
 | 
						|
        <spring.data.version>2.2.2.RELEASE</spring.data.version>
 | 
						|
        <cglib.version>2.2.2</cglib.version>
 | 
						|
        <hsqldb.version>2.5.0</hsqldb.version>
 | 
						|
        <hibernate.version>5.4.9.Final</hibernate.version>
 | 
						|
        <deploy-path>enter-location-of-server</deploy-path>
 | 
						|
        <apache-tiles.version>3.0.8</apache-tiles.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |