You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/04/03 17:20:33 UTC

[3/8] logging-log4j-kotlin git commit: Add docs html5 output to maven

Add docs html5 output to maven


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-kotlin/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-kotlin/commit/845862fb
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-kotlin/tree/845862fb
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-kotlin/diff/845862fb

Branch: refs/heads/master
Commit: 845862fb12d6e079e0738019bd344f1bed0acf3c
Parents: 42458fd
Author: Raman Gupta <ro...@gmail.com>
Authored: Mon Apr 2 20:45:44 2018 -0400
Committer: Raman Gupta <ro...@gmail.com>
Committed: Mon Apr 2 20:45:44 2018 -0400

----------------------------------------------------------------------
 pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-kotlin/blob/845862fb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 31af9ba..d25bf56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,6 +114,23 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.asciidoctor</groupId>
+        <artifactId>asciidoctor-maven-plugin</artifactId>
+        <version>1.5.6</version>
+        <executions>
+          <execution>
+            <id>output-html</id>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>process-asciidoc</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <backend>html5</backend>
+        </configuration>
+      </plugin>
     </plugins>
   </build>