* [JAVA-20622] Upgraded spring-web-modules to jdk9-and-above profile + minor clean up * [JAVA-20622] Fixed issue at spring-freemarker module
		
			
				
	
	
		
			111 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			4.3 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>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-war-plugin</artifactId>
 | |
|                 <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> |