Fixed the build and docs

This commit is contained in:
Marcin Grzejszczak
2019-05-08 13:13:37 +02:00
parent 45a284dc45
commit be83591547
9 changed files with 923 additions and 21 deletions

View File

@@ -37,6 +37,28 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<id>copy-resources-for-global-docs</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/generated-docs
</outputDirectory>
<resources>
<resource>
<directory>
${maven.multiModuleProjectDirectory}/spring-cloud-info/target/generated-docs
</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>