Fixed the camel-manual attache manual.html issue
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f5f61516 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f5f61516 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f5f61516 Branch: refs/heads/camel-2.12.x Commit: f5f61516c11a213740a37693cff0c8fb3bd1c5fb Parents: e8f6a51 Author: Willem Jiang <[email protected]> Authored: Sun Jul 6 15:59:26 2014 +0800 Committer: Willem Jiang <[email protected]> Committed: Sun Jul 6 16:00:47 2014 +0800 ---------------------------------------------------------------------- tooling/camel-manual/pom.xml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/f5f61516/tooling/camel-manual/pom.xml ---------------------------------------------------------------------- diff --git a/tooling/camel-manual/pom.xml b/tooling/camel-manual/pom.xml index 384e139..86eb954 100644 --- a/tooling/camel-manual/pom.xml +++ b/tooling/camel-manual/pom.xml @@ -37,20 +37,22 @@ <artifactId>tagsoup</artifactId> </dependency> </dependencies> - + <profiles> <profile> <id>fastinstall</id> <properties> <generate.manual.skip.exec>true</generate.manual.skip.exec> + <skip.attach.manual>true</skip.attach.manual> </properties> </profile> </profiles> <properties> <generate.manual.skip.exec>false</generate.manual.skip.exec> + <skip.attach.manual>false</skip.attach.manual> </properties> - + <build> <plugins> <plugin> @@ -79,7 +81,7 @@ } } </style> - + <link href='http://camel.apache.org/styles/highlighter/styles/shCoreCamel.css' rel='stylesheet' type='text/css' /> <link href='http://camel.apache.org/styles/highlighter/styles/shThemeCamel.css' rel='stylesheet' type='text/css' /> <script src='http://camel.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> @@ -87,7 +89,7 @@ <script src='http://camel.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> <script src='http://camel.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> <script src='http://camel.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> - + <script type="text/javascript"> SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); @@ -111,7 +113,7 @@ <goal>attach-artifact</goal> </goals> <configuration> - <skipAttach>true</skipAttach> + <skipAttach>${skip.attach.manual}</skipAttach> <artifacts> <artifact> <file>${project.build.directory}/site/manual/camel-manual-${project.version}.html</file> @@ -121,7 +123,7 @@ </configuration> </execution> </executions> - </plugin> + </plugin> </plugins> </build>
