Revision: 285
Author:
joseph.r...@gmail.com
Date: Thu Nov 22 06:07:38 2012
Log: Deleted wiki page JavadocsOnS3 through web user interface.
http://code.google.com/p/jrugged/source/detail?r=285
Deleted:
/wiki/JavadocsOnS3.wiki
=======================================
--- /wiki/JavadocsOnS3.wiki Mon Feb 21 11:17:41 2011
+++ /dev/null
@@ -1,36 +0,0 @@
-#summary How to get updated Javadocs hosted on S3.
-
-= Uploading Release Javadocs to S3 =
-
-1. Check out a tagged release.
-
-{{{
-$ svn checkout
https://jrugged.googlecode.com/svn/tags/jrugged-2.3.0
jrugged-2.3.0 --username
jonatha...@comcast.com
-$ cd jrugged-2.3.0
-}}}
-
-2. Build and install software artifacts locally.
-
-{{{
-$ mvn install
-}}}
-
-3. Generate Javadocs.
-
-{{{
-$ mvn javadoc:javadoc
-}}}
-
-4. For each module in jrugged-core, jrugged-aspects, jrugged-spring:
-{{{
-$ cd jrugged-core/target
-$ mkdir jrugged-core-2.3.0
-$ mv apidocs jrugged-core-2.3.0
-$ <upload jrugged-core-2.3.0 to the jrugged S3 bucket>
-}}}
-
-5. For the uploading step, I use the 's3put' command that comes with
[
http://code.google.com/p/boto/ boto], as in:
-
-{{{
-$ s3put -b jrugged -p `pwd` -g public-read jrugged-core-2.3.0
-}}}