* upgrade to spring boot 1.5.2 * add full update to REST API * modify ratings controller * upgrade herold * fix integration test * fix integration test * minor fix * fix integration test * fix integration test * minor cleanup * minor cleanup * remove log4j properties * use standard logbook.xml * remove log4j dependencies * remove commons-logging * merge * fix conflict * exclude commons-logging dependency * cleanup * minor fix * minor fix * fix dependency issues * Revert "fix dependency issues" This reverts commit 83bf1f9fd2e1a9a55f9cacb085669568b06b49ec. * fix dependency issues * minor fix * minor fix * minor fix * cleanup generated files * fix commons-logging issue * add parent to pom * cleanup parent dependencies * cleanup pom
		
			
				
	
	
		
			114 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0"?>
 | |
| <project
 | |
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
 | |
|     xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 | |
| 
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <groupId>com.baeldung</groupId>
 | |
|     <version>0.1-SNAPSHOT</version>
 | |
|     <artifactId>spring-mvc-forms</artifactId>
 | |
| 
 | |
|     <name>spring-mvc-forms</name>
 | |
|     <packaging>war</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-webmvc</artifactId>
 | |
|             <version>${springframework.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </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.hibernate</groupId>
 | |
|             <artifactId>hibernate-validator</artifactId>
 | |
|             <version>${hibernate-validator.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>commons-fileupload</groupId>
 | |
|             <artifactId>commons-fileupload</artifactId>
 | |
|             <version>${fileupload.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
 | |
|         <dependency>
 | |
|             <groupId>com.fasterxml.jackson.core</groupId>
 | |
|             <artifactId>jackson-databind</artifactId>
 | |
|             <version>${jackson.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
|     <profiles>
 | |
|         <!-- Local -->
 | |
|         <profile>
 | |
|             <id>spring-mvc-forms</id>
 | |
|             <activation>
 | |
|                 <activeByDefault>true</activeByDefault>
 | |
|             </activation>
 | |
|             <build>
 | |
|                 <pluginManagement>
 | |
|                     <plugins>
 | |
| 
 | |
|                         <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-forms</warName>
 | |
|                                 <failOnMissingWebXml>false</failOnMissingWebXml>
 | |
|                                 <outputDirectory>${deploy-path}</outputDirectory>
 | |
|                             </configuration>
 | |
|                         </plugin>
 | |
| 
 | |
|                     </plugins>
 | |
|                 </pluginManagement>
 | |
|                 <finalName>spring-mvc-forms</finalName>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
| 
 | |
|     <properties>
 | |
|         <springframework.version>4.3.7.RELEASE</springframework.version>
 | |
|         <maven-war-plugin.version>2.6</maven-war-plugin.version>
 | |
|         <jstl.version>1.2</jstl.version>
 | |
|         <javax.servlet.jsp-api.version>2.3.1</javax.servlet.jsp-api.version>
 | |
|         <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
 | |
|         <hibernate-validator.version>5.4.0.Final</hibernate-validator.version>
 | |
|         <deploy-path>enter-location-of-server</deploy-path>
 | |
|         <fileupload.version>1.3.2</fileupload.version>
 | |
|         <jackson.version>2.8.7</jackson.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 | |
| 
 |