* 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
		
			
				
	
	
		
			86 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.3 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/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <groupId>com.baeldung</groupId>
 | |
|     <artifactId>selenium-junit-testng</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|     <build>
 | |
|         <sourceDirectory>src</sourceDirectory>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>${maven-compiler-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <source>1.8</source>
 | |
|                     <target>1.8</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-surefire-plugin</artifactId>
 | |
|                 <version>${maven-surefire-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <testFailureIgnore>true</testFailureIgnore>
 | |
|                     <includes>
 | |
|                         <include>**/*UnitTest.java</include>
 | |
|                     </includes>
 | |
|                     <systemPropertyVariables></systemPropertyVariables>
 | |
|                     <testFailureIgnore>false</testFailureIgnore>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
|     <profiles>
 | |
|         <profile>
 | |
|             <id>live</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.apache.maven.plugins</groupId>
 | |
|                         <artifactId>maven-surefire-plugin</artifactId>
 | |
|                         <version>${maven-surefire-plugin.version}</version>
 | |
|                         <configuration>
 | |
|                             <includes>
 | |
|                                 <include>**/*LiveTest.java</include>
 | |
|                             </includes>
 | |
|                             <testFailureIgnore>false</testFailureIgnore>
 | |
|                         </configuration>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.seleniumhq.selenium</groupId>
 | |
|             <artifactId>selenium-java</artifactId>
 | |
|             <version>${selenium-java.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>            
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>${junit.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.testng</groupId>
 | |
|             <artifactId>testng</artifactId>
 | |
|             <version>${testng.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|     
 | |
|     <properties>
 | |
|         <junit.version>4.12</junit.version>
 | |
|         <testng.version>6.10</testng.version>
 | |
|         <selenium-java.version>3.0.1</selenium-java.version>
 | |
|         
 | |
|         <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
 | |
|         <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
 | |
|     </properties>
 | |
| </project> |