Repository: camel Updated Branches: refs/heads/master 970707f4e -> 42f4e027d
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/42f4e027 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/42f4e027 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/42f4e027 Branch: refs/heads/master Commit: 42f4e027ddfdc77b287a39dec5f717ce13dc6496 Parents: 970707f Author: Willem Jiang <[email protected]> Authored: Sun Jul 6 15:59:26 2014 +0800 Committer: Willem Jiang <[email protected]> Committed: Sun Jul 6 15:59:26 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/42f4e027/tooling/camel-manual/pom.xml ---------------------------------------------------------------------- diff --git a/tooling/camel-manual/pom.xml b/tooling/camel-manual/pom.xml index cc6e08f..c89d716 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> <pluginManagement> <plugins> @@ -108,7 +110,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> @@ -116,7 +118,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(); @@ -140,7 +142,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> @@ -150,7 +152,7 @@ </configuration> </execution> </executions> - </plugin> + </plugin> </plugins> </build>
