* 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 * fix dependency issues * Revert "fix dependency issues" This reverts commit 83bf1f9fd2e1a9a55f9cacb085669568b06b49ec. * fix dependency issues * minor fix * minor fix * minor fix * cleanup generated files * fix commons-logging issue * add parent to pom * cleanup parent dependencies * cleanup pom * cleanup pom
		
			
				
	
	
		
			113 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			4.3 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>spring-rest-docs</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
 | 
						|
    <name>spring-rest-docs</name>
 | 
						|
    <description>Demo project for Spring Boot</description>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <artifactId>parent-boot-4</artifactId>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../parent-boot-4</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
 | 
						|
        <restdocs.version>1.1.2.RELEASE</restdocs.version>
 | 
						|
        <jsonpath.version>2.2.0</jsonpath.version>
 | 
						|
        <asciidoctor-plugin.version>1.5.3</asciidoctor-plugin.version>
 | 
						|
    </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.restdocs</groupId>
 | 
						|
            <artifactId>spring-restdocs-mockmvc</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.jayway.jsonpath</groupId>
 | 
						|
            <artifactId>json-path</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.asciidoctor</groupId>
 | 
						|
                <artifactId>asciidoctor-maven-plugin</artifactId>
 | 
						|
                <version>${asciidoctor-plugin.version}</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>
 | 
						|
 | 
						|
    <profiles>
 | 
						|
        <profile>
 | 
						|
            <id>integration</id>
 | 
						|
            <build>
 | 
						|
                <plugins>
 | 
						|
                    <plugin>
 | 
						|
                        <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                        <artifactId>maven-surefire-plugin</artifactId>
 | 
						|
                        <executions>
 | 
						|
                            <execution>
 | 
						|
                                <phase>integration-test</phase>
 | 
						|
                                <goals>
 | 
						|
                                    <goal>test</goal>
 | 
						|
                                </goals>
 | 
						|
                                <configuration>
 | 
						|
                                    <excludes>
 | 
						|
                                        <exclude>**/*LiveTest.java</exclude>
 | 
						|
                                    </excludes>
 | 
						|
                                    <includes>
 | 
						|
                                        <include>**/*IntegrationTest.java</include>
 | 
						|
                                    </includes>
 | 
						|
                                </configuration>
 | 
						|
                            </execution>
 | 
						|
                        </executions>
 | 
						|
                        <configuration>
 | 
						|
                            <systemPropertyVariables>
 | 
						|
                                <test.mime>json</test.mime>
 | 
						|
                            </systemPropertyVariables>
 | 
						|
                        </configuration>
 | 
						|
                    </plugin>
 | 
						|
                </plugins>
 | 
						|
            </build>
 | 
						|
        </profile>
 | 
						|
    </profiles>
 | 
						|
    
 | 
						|
</project>
 |