| 
									
										
										
										
											2016-04-12 23:20:05 -05:00
										 |  |  | <?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" | 
					
						
							| 
									
										
										
										
											2016-04-15 05:53:48 -05:00
										 |  |  |          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.example</groupId> | 
					
						
							|  |  |  |     <artifactId>demo</artifactId> | 
					
						
							|  |  |  |     <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |     <packaging>jar</packaging> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <name>spring-rest-docs</name> | 
					
						
							|  |  |  |     <description>Demo project for Spring Boot</description> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |         <artifactId>spring-boot-starter-parent</artifactId> | 
					
						
							|  |  |  |         <version>1.3.3.RELEASE</version> | 
					
						
							|  |  |  |         <relativePath/> <!-- lookup parent from repository --> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							|  |  |  |         <java.version>1.8</java.version> | 
					
						
							| 
									
										
										
										
											2016-05-12 00:40:29 -05:00
										 |  |  |         <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory> | 
					
						
							| 
									
										
										
										
											2016-04-15 05:53:48 -05:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-hateoas</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.restdocs</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-restdocs-mockmvc</artifactId> | 
					
						
							|  |  |  |             <version>1.0.1.RELEASE</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2016-05-12 00:40:29 -05:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  | 			<groupId>com.jayway.jsonpath</groupId> | 
					
						
							|  |  |  | 			<artifactId>json-path</artifactId> | 
					
						
							|  |  |  | 			<version>2.0.0</version> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							| 
									
										
										
										
											2016-04-15 05:53:48 -05:00
										 |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 00:40:29 -05:00
										 |  |  |    <build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  | 				<artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 			<plugin>  | 
					
						
							|  |  |  |             <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |             <artifactId>maven-surefire-plugin</artifactId> | 
					
						
							|  |  |  | 	            <configuration> | 
					
						
							|  |  |  | 	                <includes> | 
					
						
							| 
									
										
										
										
											2016-10-23 21:19:24 +02:00
										 |  |  | 	                    <include>**/*IntegrationTest.java</include> | 
					
						
							| 
									
										
										
										
											2016-05-12 00:40:29 -05:00
										 |  |  | 	                </includes> | 
					
						
							|  |  |  | 	            </configuration> | 
					
						
							|  |  |  |         	</plugin> | 
					
						
							|  |  |  | 			<plugin>  | 
					
						
							|  |  |  | 	            <groupId>org.asciidoctor</groupId> | 
					
						
							|  |  |  | 	            <artifactId>asciidoctor-maven-plugin</artifactId> | 
					
						
							|  |  |  | 	            <version>1.5.2</version> | 
					
						
							|  |  |  | 	            <executions> | 
					
						
							|  |  |  | 	                <execution> | 
					
						
							|  |  |  | 	                    <id>generate-docs</id> | 
					
						
							|  |  |  | 	                    <phase>package</phase>  | 
					
						
							|  |  |  | 	                    <goals> | 
					
						
							|  |  |  | 	                        <goal>process-asciidoc</goal> | 
					
						
							|  |  |  | 	                    </goals> | 
					
						
							|  |  |  | 	                    <configuration> | 
					
						
							|  |  |  | 	                        <backend>html</backend> | 
					
						
							|  |  |  | 	                        <doctype>book</doctype> | 
					
						
							|  |  |  | 	                        <attributes> | 
					
						
							|  |  |  | 	                            <snippets>${snippetsDirectory}</snippets>  | 
					
						
							|  |  |  | 	                        </attributes> | 
					
						
							|  |  |  | 	                        <sourceDirectory>src/docs/asciidocs</sourceDirectory> | 
					
						
							|  |  |  | 	                        <outputDirectory>target/generated-docs</outputDirectory> | 
					
						
							|  |  |  | 	                    </configuration> | 
					
						
							|  |  |  | 	                </execution> | 
					
						
							|  |  |  | 	            </executions> | 
					
						
							|  |  |  |         	</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</build> | 
					
						
							| 
									
										
										
										
											2016-04-15 05:53:48 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 23:20:05 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | </project> |