Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1961 [created] b576db768
TINKERPOP-1961 Removed duplication of images in binaries. The asciidoc plugin copies all files in the source directories of its execution. The asciidoc plugin was upgraded between 3.2.5 and 3.2.6 which introduced this new behavior. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b576db76 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/b576db76 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/b576db76 Branch: refs/heads/TINKERPOP-1961 Commit: b576db768a35f3fdef40e69bdd4a9908ff0caf4c Parents: 2f8f74a Author: Stephen Mallette <[email protected]> Authored: Wed May 9 07:03:13 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Wed May 9 07:03:13 2018 -0400 ---------------------------------------------------------------------- pom.xml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/b576db76/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 379db49..c136cb4 100644 --- a/pom.xml +++ b/pom.xml @@ -805,9 +805,14 @@ limitations under the License. <goal>process-asciidoc</goal> </goals> <configuration> - <sourceDirectory>${asciidoc.input.dir}/</sourceDirectory> + <resources> + <resource> + <directory>${asciidoc.input.dir}/</directory> + <targetPath>${htmlsingle.output.dir}/</targetPath> + <excludes>${asciidoc.input.dir}/static/*.*</excludes> + </resource> + </resources> <sourceDocumentName>index.asciidoc</sourceDocumentName> - <outputDirectory>${htmlsingle.output.dir}/</outputDirectory> <backend>html5</backend> <doctype>article</doctype> <attributes>
