Repository: incubator-trafodion Updated Branches: refs/heads/master 7a13b8331 -> 709b9318e
Fixed a problem that prevented the built document from being published. The causes of this issue is: 1. The <modules> entry is overkill when making changes to the website only. 2. The DCS and REST documents do not build on Windows. So, I normally comment out the <modules> entry in the main pom.xml for the reasons above. Not optimal since it's possible to forget to uncomment. This time, I did and no document was published (the post-site step). Please rerun the steps needed to build and publish the 1.3.0 and 2.0.0 documentation. Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/2dd96fda Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/2dd96fda Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/2dd96fda Branch: refs/heads/master Commit: 2dd96fda88bf41c8ebaf34701cce6adc3e2bcb74 Parents: f0bc795 Author: Gunnar Tapper <[email protected]> Authored: Sat Apr 9 00:50:55 2016 -0600 Committer: Gunnar Tapper <[email protected]> Committed: Sat Apr 9 00:50:55 2016 -0600 ---------------------------------------------------------------------- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/2dd96fda/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 05f4f5f..426d2e7 100644 --- a/pom.xml +++ b/pom.xml @@ -132,7 +132,7 @@ </properties> <modules> - <!--module>docs/client_install</module> + <module>docs/client_install</module> <module>dcs</module> <module>core/rest</module> <module>docs/command_interface</module> @@ -141,7 +141,8 @@ <module>docs/provisioning_guide</module> <module>docs/messages_guide</module> <module>docs/odb_user</module> - <module>docs/sql_reference</module--> + <module>docs/spj_guide</module> + <module>docs/sql_reference</module> </modules> <build>
