Upgrade to latest versions.

This commit is contained in:
Greg Turnquist
2019-10-01 12:33:30 -05:00
parent 6e60e69ab3
commit 5c5dee8e43
2 changed files with 5 additions and 63 deletions

10
pom.xml
View File

@@ -11,7 +11,7 @@
<name>Spring HATEOAS - Examples</name>
<description>Examples using Spring HATEOAS to build RESTful services</description>
<inceptionYear>2017-2019</inceptionYear>
<inceptionYear>2017</inceptionYear>
<contributors>
<contributor>
@@ -32,7 +32,7 @@
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<comments>
Copyright 2017 the original author or authors.
Copyright 2017-2019 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -53,7 +53,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.M5</version>
<version>2.2.0.BUILD-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
@@ -73,8 +73,8 @@
<java.version>1.8</java.version>
<evo.version>1.2.2</evo.version>
<!--<spring-hateoas.version>1.0.0.BUILD-SNAPSHOT</spring-hateoas.version>-->
<!--<spring-plugin.version>2.0.0.BUILD-SNAPSHOT</spring-plugin.version>-->
<!-- <spring-hateoas.version>1.0.0.RELEASE</spring-hateoas.version>-->
<!-- <spring-data-releasetrain.version>Moore-RELEASE</spring-data-releasetrain.version>-->
</properties>
<profiles>

View File

@@ -40,64 +40,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<id>generate-docs</id>
<phase>prepare-package</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html</backend>
<doctype>book</doctype>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.springframework.restdocs</groupId>
<artifactId>spring-restdocs-asciidoctor</artifactId>
<version>${spring-restdocs.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.outputDirectory}/static/docs
</outputDirectory>
<resources>
<resource>
<directory>
${project.build.directory}/generated-docs
</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>