You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2016/11/21 10:09:01 UTC

wicket git commit: Revert "Removed graphviz dependency for now"

Repository: wicket
Updated Branches:
  refs/heads/master 41313cb84 -> e01f5bbb6


Revert "Removed graphviz dependency for now"

This reverts commit 4ed3c46bffe97e5c24b7a3e32201d6d0ceadfd83.


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

Branch: refs/heads/master
Commit: e01f5bbb6452e79145337adb12ec860ab2fd9be5
Parents: 41313cb
Author: Martijn Dashorst <ma...@topicus.nl>
Authored: Mon Nov 21 11:08:53 2016 +0100
Committer: Martijn Dashorst <ma...@topicus.nl>
Committed: Mon Nov 21 11:09:03 2016 +0100

----------------------------------------------------------------------
 wicket-user-guide/pom.xml | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/e01f5bbb/wicket-user-guide/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml
index fa564f3..143e0d2 100644
--- a/wicket-user-guide/pom.xml
+++ b/wicket-user-guide/pom.xml
@@ -119,6 +119,9 @@
 							<allow-uri-read>allow-uri-read</allow-uri-read>
 						</attributes>
 						<preserveDirectories>true</preserveDirectories>
+						<requires>
+							<require>asciidoctor-diagram</require>
+						</requires>
 						<sourceDocumentName>single.adoc</sourceDocumentName>
 						<sourceHighlighter>coderay</sourceHighlighter>
 					</configuration>
@@ -214,5 +217,27 @@
 				</plugins>
 			</build>
 		</profile>
+		<profile>
+			<id>dot-1</id>
+			<activation>
+				<file>
+					<exists>/usr/local/bin/dot</exists>
+				</file>
+			</activation>
+			<properties>
+				<dot.location>/usr/local/bin/dot</dot.location>
+			</properties>
+		</profile>
+		<profile>
+			<id>dot-2</id>
+			<activation>
+				<file>
+					<exists>/usr/bin/dot</exists>
+				</file>
+			</activation>
+			<properties>
+				<dot.location>/usr/bin/dot</dot.location>
+			</properties>
+		</profile>
 	</profiles>
 </project>