146 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			146 lines
		
	
	
		
			4.1 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>
 | |
| 	<parent>
 | |
| 		<groupId>org.springframework.boot</groupId>
 | |
| 		<artifactId>spring-boot-parent</artifactId>
 | |
| 		<version>1.4.0.BUILD-SNAPSHOT</version>
 | |
| 		<relativePath>../spring-boot-parent</relativePath>
 | |
| 	</parent>
 | |
| 	<artifactId>spring-boot-test</artifactId>
 | |
| 	<name>Spring Boot Test</name>
 | |
| 	<description>Spring Boot Test</description>
 | |
| 	<url>http://projects.spring.io/spring-boot/</url>
 | |
| 	<organization>
 | |
| 		<name>Pivotal Software, Inc.</name>
 | |
| 		<url>http://www.spring.io</url>
 | |
| 	</organization>
 | |
| 	<properties>
 | |
| 		<main.basedir>${basedir}/..</main.basedir>
 | |
| 	</properties>
 | |
| 	<dependencies>
 | |
| 		<!-- Compile -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot</artifactId>
 | |
| 		</dependency>
 | |
| 		<!-- Optional -->
 | |
| 		<dependency>
 | |
| 			<groupId>com.fasterxml.jackson.core</groupId>
 | |
| 			<artifactId>jackson-databind</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.google.code.gson</groupId>
 | |
| 			<artifactId>gson</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.servlet</groupId>
 | |
| 			<artifactId>javax.servlet-api</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>junit</groupId>
 | |
| 			<artifactId>junit</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.httpcomponents</groupId>
 | |
| 			<artifactId>httpclient</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.assertj</groupId>
 | |
| 			<artifactId>assertj-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.hamcrest</groupId>
 | |
| 			<artifactId>hamcrest-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.hamcrest</groupId>
 | |
| 			<artifactId>hamcrest-library</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.mockito</groupId>
 | |
| 			<artifactId>mockito-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.skyscreamer</groupId>
 | |
| 			<artifactId>jsonassert</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.seleniumhq.selenium</groupId>
 | |
| 			<artifactId>selenium-htmlunit-driver</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-test</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-web</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>net.sourceforge.htmlunit</groupId>
 | |
| 			<artifactId>htmlunit</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<!-- Test -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.tomcat.embed</groupId>
 | |
| 			<artifactId>tomcat-embed-core</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.tomcat.embed</groupId>
 | |
| 			<artifactId>tomcat-embed-logging-juli</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-webmvc</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.codehaus.groovy</groupId>
 | |
| 			<artifactId>groovy</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.codehaus.groovy</groupId>
 | |
| 			<artifactId>groovy-xml</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.jayway.jsonpath</groupId>
 | |
| 			<artifactId>json-path</artifactId>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 				<groupId>org.apache.maven.plugins</groupId>
 | |
| 				<artifactId>maven-jar-plugin</artifactId>
 | |
| 				<executions>
 | |
| 					<execution>
 | |
| 						<goals>
 | |
| 							<goal>test-jar</goal>
 | |
| 						</goals>
 | |
| 					</execution>
 | |
| 				</executions>
 | |
| 			</plugin>
 | |
| 		</plugins>
 | |
| 	</build>
 | |
| </project>
 |