* 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
		
			
				
	
	
		
			96 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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/maven-v4_0_0.xsd">
 | |
| 	<modelVersion>4.0.0</modelVersion>
 | |
| 	<groupId>org.apache.camel</groupId>
 | |
| 	<artifactId>spring-apache-camel</artifactId>
 | |
| 	<packaging>jar</packaging>
 | |
| 	<version>1.0-SNAPSHOT</version>
 | |
| 	<name>spring-apache-camel</name>
 | |
| 	<url>http://maven.apache.org</url>
 | |
| 
 | |
| 	<properties>
 | |
| 		<env.camel.version>2.18.1</env.camel.version>
 | |
| 		<env.spring.version>4.3.4.RELEASE</env.spring.version>
 | |
| 		<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
 | |
| 		<java.version>1.8</java.version>
 | |
| 		<junit.version>4.12</junit.version>
 | |
| 	</properties>
 | |
| 
 | |
| 	<dependencies>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>junit</groupId>
 | |
| 			<artifactId>junit</artifactId>
 | |
| 			<version>${junit.version}</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.camel</groupId>
 | |
| 			<artifactId>camel-core</artifactId>
 | |
| 			<version>${env.camel.version}</version>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.camel</groupId>
 | |
| 			<artifactId>camel-spring</artifactId>
 | |
| 			<version>${env.camel.version}</version>
 | |
| 		            <exclusions>
 | |
| 		                <exclusion>
 | |
| 		                    <artifactId>commons-logging</artifactId>
 | |
| 		                    <groupId>commons-logging</groupId>
 | |
| 		                </exclusion>
 | |
| 		            </exclusions>			
 | |
| 		</dependency>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.camel</groupId>
 | |
| 			<artifactId>camel-stream</artifactId>
 | |
| 			<version>${env.camel.version}</version>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-context</artifactId>
 | |
| 			<version>${env.spring.version}</version>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.camel</groupId>
 | |
| 			<artifactId>camel-spring-javaconfig</artifactId>
 | |
| 			<version>${env.camel.version}</version>
 | |
| 		</dependency>
 | |
| 
 | |
| 	</dependencies>
 | |
| 
 | |
| 	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 				<artifactId>maven-compiler-plugin</artifactId>
 | |
| 				<configuration>
 | |
| 					<verbose>true</verbose>
 | |
| 					<fork>true</fork>
 | |
| 					<compilerVersion>${java.version}</compilerVersion>
 | |
| 					<source>${java.version}</source>
 | |
| 					<target>${java.version}</target>
 | |
| 				</configuration>
 | |
| 			</plugin>
 | |
| 
 | |
| 			<plugin>
 | |
| 				<groupId>org.apache.maven.plugins</groupId>
 | |
| 				<artifactId>maven-surefire-plugin</artifactId>
 | |
| 				<version>${maven-surefire-plugin.version}</version>
 | |
| 				<configuration>
 | |
| 					<excludes>
 | |
| 						<exclude>**/*IntegrationTest.java</exclude>
 | |
| 					</excludes>
 | |
| 					<systemPropertyVariables>
 | |
| 						<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
 | |
| 					</systemPropertyVariables>
 | |
| 				</configuration>
 | |
| 			</plugin>
 | |
| 		</plugins>
 | |
| 	</build>
 | |
| 
 | |
| 
 | |
| </project>
 |