Skip to content

Instantly share code, notes, and snippets.

@thiagotn
Last active September 5, 2018 03:36
Show Gist options
  • Save thiagotn/3b3c27b1f343eb9ef511eda42a783414 to your computer and use it in GitHub Desktop.
Save thiagotn/3b3c27b1f343eb9ef511eda42a783414 to your computer and use it in GitHub Desktop.
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment