You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ge...@apache.org on 2001/09/18 12:30:19 UTC

cvs commit: jakarta-velocity/docs developer-guide.html

geirm       01/09/18 03:30:19

  Modified:    xdocs    developer-guide.xml
               docs     developer-guide.html
  Log:
  Update notes on the jar-nodeps and jar-J2EE-nodeps targets
  
  Revision  Changes    Path
  1.54      +21 -2     jakarta-velocity/xdocs/developer-guide.xml
  
  Index: developer-guide.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/developer-guide.xml,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- developer-guide.xml	2001/09/13 19:00:10	1.53
  +++ developer-guide.xml	2001/09/18 10:30:18	1.54
  @@ -175,6 +175,19 @@
           includes everything you need.
         </li>
         <li>
  +        <b><code>jar-nodeps</code></b> builds the complete Velocity jar in
  +        the <code>bin</code> directory, without including necessary 
  +        support for logging from the 
  +        <a href="http://jakarta.apache.org/avalon/logkit/index.html">Jakarta
  +        Avalon Logkit</a> package, or the necesary support for WebMacro
  +        template conversion using the 
  +        <a href="http://jakarta.apache.org/oro/index.html">Jakarta ORO</a>
  +        package. If you use this
  +        target, and you wish to use the built-in logging or template conversion,
  +        you must include the appropriate jars in your CLASSPATH or
  +        webapp's WEB-INF/lib.
  +       </li>
  +       <li>
           <b><code>jar-core</code></b> builds a slimmer Velocity jar in the
           <code>bin</code> directory, called 'velocity-core-X.jar'. This jar
           contains the core Velocity functionality, and doesn't include example
  @@ -193,14 +206,20 @@
           contains utility code for servlet programmers.
         </li>
         <li>
  -        <b><code>jar-j2ee</code></b> builds a complete jar, like the 'jar' target,
  +        <b><code>jar-J2EE</code></b> builds a complete jar, like the 'jar' target,
           that includes any components that require J2EE support. Currently, this
           includes only org.apache.velocity.runtime.resource.loader.DataSourceResourceLoader.
           As usual, it is placed in the  <code>bin</code> directory, called
  -        'velocity-j2ee-X.jar'. NOTE : if you wish to use this build target, you
  +        'velocity-J2EE-X.jar'. NOTE : if you wish to use this build target, you
           must place (or link) a copy of j2ee.jar into the build/lib directory.
           We do not provide it as part of the distribution. A good source is
           http://java.sun.com/
  +      </li>
  +      <li>
  +        <b><code>jar-J2EE-nodeps</code></b> build a complete jar with J2EE support
  +        but omits including logging support from the Jakarta Avalon Logkit and 
  +        regexp support fromt the Jakarta ORO package. See the notes on the
  +        <code>jar-nodeps</code> target, above.
         </li>
         <li>
           <b><code>examples</code></b> builds the example code in the example programs
  
  
  
  1.75      +21 -2     jakarta-velocity/docs/developer-guide.html
  
  Index: developer-guide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/developer-guide.html,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- developer-guide.html	2001/09/14 19:10:52	1.74
  +++ developer-guide.html	2001/09/18 10:30:19	1.75
  @@ -290,6 +290,19 @@
           includes everything you need.
         </li>
         <li>
  +        <b><code>jar-nodeps</code></b> builds the complete Velocity jar in
  +        the <code>bin</code> directory, without including necessary 
  +        support for logging from the 
  +        <a href="http://jakarta.apache.org/avalon/logkit/index.html">Jakarta
  +        Avalon Logkit</a> package, or the necesary support for WebMacro
  +        template conversion using the 
  +        <a href="http://jakarta.apache.org/oro/index.html">Jakarta ORO</a>
  +        package. If you use this
  +        target, and you wish to use the built-in logging or template conversion,
  +        you must include the appropriate jars in your CLASSPATH or
  +        webapp's WEB-INF/lib.
  +       </li>
  +       <li>
           <b><code>jar-core</code></b> builds a slimmer Velocity jar in the
           <code>bin</code> directory, called 'velocity-core-X.jar'. This jar
           contains the core Velocity functionality, and doesn't include example
  @@ -308,14 +321,20 @@
           contains utility code for servlet programmers.
         </li>
         <li>
  -        <b><code>jar-j2ee</code></b> builds a complete jar, like the 'jar' target,
  +        <b><code>jar-J2EE</code></b> builds a complete jar, like the 'jar' target,
           that includes any components that require J2EE support. Currently, this
           includes only org.apache.velocity.runtime.resource.loader.DataSourceResourceLoader.
           As usual, it is placed in the  <code>bin</code> directory, called
  -        'velocity-j2ee-X.jar'. NOTE : if you wish to use this build target, you
  +        'velocity-J2EE-X.jar'. NOTE : if you wish to use this build target, you
           must place (or link) a copy of j2ee.jar into the build/lib directory.
           We do not provide it as part of the distribution. A good source is
           http://java.sun.com/
  +      </li>
  +      <li>
  +        <b><code>jar-J2EE-nodeps</code></b> build a complete jar with J2EE support
  +        but omits including logging support from the Jakarta Avalon Logkit and 
  +        regexp support fromt the Jakarta ORO package. See the notes on the
  +        <code>jar-nodeps</code> target, above.
         </li>
         <li>
           <b><code>examples</code></b> builds the example code in the example programs