Here is an additional xdoc with instructions on how to build stratum and
a patch to the previously submitted project.xml file that has a pointer
to the new doc. Sorry for the confusion, but I thought this might be
useful too.
On Sat, Feb 16, 2002 at 01:10:29AM -0500, Pete Kazmier wrote:
> I just finished converting all of Aaron's JCS documents to xdoc format.
> While doing this, I also created the start of a stratum xdoc hierarchy.
> This includes Jason's description of stratum from last week's status
> update, and all of the JCS documentation that I converted.
--- xdocs/project.xml.old Sat Feb 16 01:43:15 2002
+++ xdocs/project.xml Sat Feb 16 01:29:59 2002
@@ -7,6 +7,7 @@
<body>
<menu name="Essentials">
<item name="Overview" href="/index.html"/>
+ <item name="Building" href="/building.html"/>
</menu>
<menu name="JCS Documentation">
<?xml version="1.0"?>
<document>
<properties>
<title>Building Stratum</title>
<author email="[EMAIL PROTECTED]">Pete Kazmier</author>
</properties>
<body>
<section name="Building Stratum">
<p>
Building Stratum from CVS is now very easy. Recently, changes
have been made to the Stratum build process to simplify the
acquisition of jar dependencies. The entire build process is
now a four-step process.
</p>
<p>
The first step of the process is to obtain the source.
Checkout the <code>jakarta-turbine-stratum</code>
repository. If you are unfamiliar with the Jakarta CVS
repositories, please refer to the
<a href="/site/cvsindex.html">CVS Repositories</a> document
for assistance.
</p>
<p>
Next, you must define the <code>lib.repo</code> property in
your <code>${user.home}/build.properties</code> file. If
you do not have a <code>${user.home}/build.properties</code>
file, create one in your home directory and add the
following line:
</p>
<source><![CDATA[
lib.repo = /path/to/some/directory
]]></source>
<p>
The value of this property determines the location that the
Stratum dependencies will be stored after they have been
downloaded. Note: this directory must exist in the
filesystem.
</p>
<p>
Next, in the top-level directory of the Stratum distribution,
type the following command to download all of the
dependencies required to build Stratum:
</p>
<source><![CDATA[
ant update-jars
]]></source>
<p>
Lastly, after all of the jars have been downloaded to your
<code>lib.repo</code> directory, building the Stratum
distribution is only a matter of typing the following
command:
</p>
<source><![CDATA[
ant
]]></source>
<p>
The resulting jar file will be located in the <code>bin</code>
directory.
</p>
</section>
</body>
</document>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>