Changeset 6f39ee2


Ignore:
Timestamp:
12/01/2004 08:24:44 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
9ebf027
Parents:
aa0f6ab4
Message:

Added a note to the Apache Ant instructions to optionally build the Junit testing library

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3064 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    raa0f6ab4 r6f39ee2  
    1 <!ENTITY day          "30">
    2 <!ENTITY month        "11">
     1<!ENTITY day          "01">
     2<!ENTITY month        "12">
    33<!ENTITY year         "2004">
    44<!ENTITY version      "svn-&year;&month;&day;">
    5 <!ENTITY releasedate  "November &day;th, &year;">
     5<!ENTITY releasedate  "December &day;st, &year;">
    66<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    77<!ENTITY blfs-version "cvs">                  <!-- cvs|[release #] -->
  • general/sysutils/apache-ant.xml

    raa0f6ab4 r6f39ee2  
    6969requirements of various packages. Review the table at
    7070<ulink url="http://ant.apache.org/manual/install.html#librarydependencies"/>
    71 for any prerequisite libraries you may need.</para>
     71for any prerequisite libraries you may need. One such library is the
     72<application>JUnit</application> testing framework library. Many Ant-installed
     73packages will use this library to perform the unit tests during the build
     74process. To install the JUnit library along with the
     75<application>Apache Ant</application> package, download it from
     76<ulink url="http://www.junit.org/"/>, unzip the distribution file (requires
     77<xref linkend="unzip"/>) and copy the <filename>junit.jar</filename> file
     78into the <filename class='directory'>lib</filename> subdirectory of the
     79<application>Apache Ant</application> source tree before beginning the
     80<application>Apache Ant</application> build.</para>
    7281
    7382<para>Install <application>Apache Ant</application> by running the following
     
    112121<sect3><title>Configuration Information</title>
    113122<para>Some packages will require <command>ant</command> to be in the search
    114 path. Satisfy this requirement by adding the following line to
     123path and the <envar>$ANT_HOME</envar> environment variable defined.
     124Satisfy these requirements by adding the following lines to
    115125<filename>/etc/profile</filename> or to individual user's
    116 <filename>~/.profile</filename> or <filename>.bashrc</filename> files:</para>
     126<filename>~/.profile</filename> or <filename>~/.bashrc</filename> files:</para>
    117127
    118 <screen><userinput>export PATH=$PATH:/opt/ant/bin</userinput></screen>
     128<screen><userinput>export PATH=$PATH:/opt/ant/bin
     129export ANT_HOME=/opt/ant</userinput></screen>
    119130
    120 <para>You may also need to create an environment variable for
    121 <envar>$ANT_HOME</envar>. Add the following to one of the files mentioned
    122 above:</para>
    123 
    124 <screen><userinput>export ANT_HOME=/opt/ant</userinput></screen>
    125131</sect3>
    126132
  • introduction/welcome/changelog.xml

    raa0f6ab4 r6f39ee2  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>December 1st, 2004 [randy]: Added a note to the
     26Apache Ant instructions to optionally build the Junit testing library
     27during the build.</para></listitem>
    2428
    2529<listitem><para>November 30th, 2004 [randy]: Added new package
Note: See TracChangeset for help on using the changeset viewer.