You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2018/06/22 15:03:39 UTC

[05/10] tinkerpop git commit: Fixed a problem where index.asciidoc wasn't processing to html right CTR

Fixed a problem where index.asciidoc wasn't processing to html right  CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/8363ad56
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/8363ad56
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/8363ad56

Branch: refs/heads/TINKERPOP-1990
Commit: 8363ad560a4a9e679d401b051952a1856ce570c0
Parents: aef2f6c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Jun 22 10:49:50 2018 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Jun 22 10:49:50 2018 -0400

----------------------------------------------------------------------
 pom.xml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/8363ad56/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 155db82..d13f60e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -866,11 +866,18 @@ limitations under the License.
                                 <configuration>
                                     <resources>
                                         <resource>
-                                            <directory>${asciidoc.input.dir}/</directory>
-                                            <targetPath>${htmlsingle.output.dir}/</targetPath>
-                                            <excludes>${asciidoc.input.dir}/static/*.*</excludes>
+                                            <directory>${asciidoc.input.dir}</directory>
+                                            <targetPath>${htmlsingle.output.dir}</targetPath>
+                                            <includes>
+                                                <include>index.asciidoc</include>
+                                            </includes>
+                                            <excludes>
+                                                <exclude>${asciidoc.input.dir}/static/*.*</exclude>
+                                            </excludes>
                                         </resource>
                                     </resources>
+                                    <sourceDirectory>${asciidoc.input.dir}</sourceDirectory>
+                                    <outputDirectory>${htmlsingle.output.dir}</outputDirectory>
                                     <sourceDocumentName>index.asciidoc</sourceDocumentName>
                                     <backend>html5</backend>
                                     <doctype>article</doctype>