Hi This is the provisional changes done in site pom.xml to deploy the site. I have locally two folders:
/home/lu4242/myfaces-site/checkout /home/lu4242/myfaces-site/site The idea is do the changes in myfaces-site/site and then do a manual copy/commit for checkout. regards, Leonardo Index: . =================================================================== --- . (revision 1401760) +++ . (working copy) @@ -34,23 +34,54 @@ <description>This is the MyFaces Site</description> <url>http://myfaces.apache.org</url> + <properties> + <site.mainDirectory>${user.home}/myfaces-site/checkout</site.mainDirectory> + <siteContent.path>${user.home}/myfaces-site/site</siteContent.path> + <!-- it's a default location for performance reason (not checkout the content all the time) + you can override this value in your settings. --> + <scmCheckout.path>\${site.mainDirectory}</scmCheckout.path> + <siteDeploy.url>file://${user.home}/myfaces-site/site</siteDeploy.url> + </properties> + <build> <defaultGoal>site</defaultGoal> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> - <version>1.0-beta-7</version> + <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> - <version>3.0</version> + <version>3.1</version> </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-publish-plugin</artifactId> + <version>1.0-beta-1</version> + <configuration> + <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/myfaces/site/publish/</pubScmUrl> + <tryUpdate>true</tryUpdate> + <checkoutDirectory>${scmCheckout.path}</checkoutDirectory> + <content>\${siteContent.path}</content> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <stagingRepositoryId>myfaces-local-staging</stagingRepositoryId> + <stagingSiteURL>${siteDeploy.url}</stagingSiteURL> + </configuration> + </plugin> + </plugins> + </build> <reporting> <plugins> @@ -65,7 +96,7 @@ <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/site/trunk</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/myfaces/site/trunk</url> </scm> - +<!-- <distributionManagement> <site> <id>apache.website</id> @@ -73,6 +104,14 @@ <url>scpexe://people.apache.org/www/myfaces.apache.org</url> </site> </distributionManagement> - +--> + <distributionManagement> + <site> + <id>myfaces-local-staging</id> + <name>Apache Website</name> + <url>scp://localhost/home/lu4242/myfaces-site</url> + </site> + </distributionManagement> + </project> 2012/11/27, Leonardo Uribe <[email protected]>: > Hi > > Since svnpubsub is working, do a site:deploy does not work. Instead, > you need to: > > 1. checkout locally > > http://svn.apache.org/repos/asf/myfaces/site/publish/ > > WARNING: Our site is huge, that will take a lot of time > > 2. Use a local site:stage-deploy like is described here: > > http://maven.apache.org/plugins/maven-scm-publish-plugin/examples/multi-module-configuration.html > > Remember all our projects are multi-module, so > maven-scm-publish-plugin does not help. > > 3. Manual commit > > We need to update all myfaces projects to use this strategy, the idea > is do that with the current release process of myfaces core 2.1.10 / > 2.0.16 . I'm still trying to find how to do the necessary changes in > our pom.xml > > regards, > > Leonardo Uribe > > 2012/11/27 Werner Punz <[email protected]>: >> Ping: Leonardo, how can we publish currently our documentation? >> >> Werner >> >> >> Am 26.11.12 13:57, schrieb Werner Punz: >> >>> Am 23.11.12 16:16, schrieb Grant Smith: >>>> >>>> Leo & Werner, >>>> >>>> Thanks for the update on this. For now, I want to be able to edit the >>>> xdocs, and have the resulting changes appear on the website. Any Idea >>>> how to accomplish this simple task ? >>>> >>> Guess only Leonardo can answer that for now. >>> >>> Werner >>> >>> >>>> >>>> >>>> On Thu, Nov 22, 2012 at 12:59 PM, Leonardo Uribe <[email protected] >>>> <mailto:[email protected]>> wrote: >>>> >>>> Hi >>>> >>>> 2012/11/22 Werner Punz <[email protected] >>>> <mailto:[email protected]>>: >>>> > As for the site. Not sure if this one already is served by >>>> svnpubsub or >>>> > still by the old system. Leonardo knows more. My guess is it >>>> still is served >>>> > by the old system. I guess his plan is to have the entire site >>>> hosted by >>>> > svnpubsub for now, and then gradually move over to the CMS once >>>> it is in >>>> > place. But I am not sure, Leo can you fill us in here? >>>> >>>> svnpubsub is already working, which was the mandatory task to do >>>> this year. >>>> All myfaces site has been moved to: >>>> >>>> http://svn.apache.org/repos/asf/myfaces/site/publish/ >>>> >>>> In theory the CMS was built on top of svnpubsub, so I suppose >>>> there is a >>>> relationship between both: >>>> >>>> "... The publication links in the CMS are essentially merge + >>>> commit >>>> operations in subversion which are tied into the live site via >>>> svnpubsub. >>>> That means publishing in the CMS is virtually instantaneous. ..." >>>> >>>> I still have not tried the details about how it works, but in >>>> theory >>>> you need to >>>> put the files inside a subfolder inside publish folder and later >>>> this will be >>>> consumed by the cms and published properly in the mirror (I'm >>>> speculating >>>> here). >>>> >>>> regards, >>>> >>>> Leonardo Uribe >>>> >>>> -- >>>> Grant Smith - V.P. Information Technology >>>> Marathon Computer Systems, LLC. >>>> >>>> >>>> >>> >>> >> >
