98 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.4 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>
 | |
| 
 | |
|     <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>
 | |
|         <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
 | |
|     </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>
 | |
|         <dependency>
 | |
| 			<groupId>com.jayway.jsonpath</groupId>
 | |
| 			<artifactId>json-path</artifactId>
 | |
| 			<version>2.0.0</version>
 | |
| 		</dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|    <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>
 | |
| 	                    <include>**/*Documentation.java</include>
 | |
| 	                </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>
 | |
| 
 | |
| 
 | |
| </project>
 |