Author: dkulp
Date: Mon Mar 5 21:53:35 2012
New Revision: 1297242
URL: http://svn.apache.org/viewvc?rev=1297242&view=rev
Log:
Update README, remove content directory
Removed:
cxf/web/content/
Modified:
cxf/web/README
Modified: cxf/web/README
URL:
http://svn.apache.org/viewvc/cxf/web/README?rev=1297242&r1=1297241&r2=1297242&view=diff
==============================================================================
--- cxf/web/README (original)
+++ cxf/web/README Mon Mar 5 21:53:35 2012
@@ -1,6 +1,9 @@
This is the start of an export utility to export the CXF
-confluence spaces to the sites.
+confluence spaces to the sites. To run this manually, you need to
+have a copy of the CXF website checked out to a local directory:
+
+svn checkout
https://svn-master.apache.org/repos/infra/websites/production/cxf/content
Build:
mvn install
@@ -19,16 +22,21 @@ done in one of two ways:
<confluence.password>passwd</confluence.password>
</properties>
</profile>
-
To export the main space:
-mvn -Pmain,confluence exec:java
-should appear in content/
+mvn -Pmain,confluence exec:java -Dsite.output=/path/to/content
+should appear in /path/to/content/
To export the docs space:
-mvn -Pdocs,confluence exec:java
-should appear in content/docs
+mvn -Pdocs,confluence exec:java -Dsite.output=/path/to/content
+should appear in /path/to/content/docs
+
+In the confluence profile above, you could add a property like:
+ <site.output>/path/to/content</site.output>
+to simplify passing that into the command.
+When you commit any changes in the content directory, the changes
+should be "live" fairly quickly due to the svnpubsub process.