Check Install

   This script will verify whether you’ve correctly installed PEd4Ant and all its dependencies. Note that the script shown below is always the latest version of the script to match the latest PEd4Ant distribution, even if that's a beta release. If you have an older version of PEd4Ant, you should use the script that came with your binary distribution (under etc/ped4ant-install-check.xml).

PEd4AntCheck Install Ant Script

<?xml version="1.0" encoding="UTF-8" ?>
 
<!--
   |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
   | Do-nothing project that ensures Ant can locate and load JWare/PEd4Ant. |
   | Expects to be run from <PED4ANT_HOME>/etc directory.                   |
   |                                                                        |
   | (c) 2009 Sandbox Software MC. All rights reserved.                     |
   |________________________________________________________________________|
   -->
 
<project name="first-install" basedir="." default="about">
  <description>Verify a 'bin_withdeps' PEd4Ant installation</description>
 
  <!-- Load PEd4Ant distribution .jar files into Ant -->
  <property name="root.d" value="${basedir}/.."/>
 
  <taskdef resource="org/jwaresoftware/ped4ant/install/antlib.xml">
    <classpath>
      <fileset dir="${root.d}/dep">
        <include name="*/lib/*.jar"/>
      </fileset>
      <fileset dir="${root.d}/lib">
        <include name="*.jar"/>
      </fileset>
    </classpath>
  </taskdef>
 
  <vendorinfo name="ped4ant"/>
 
  <!-- We need a default target, so why not celebrate -->
  <target name="about">
    <echo level="info" message="RELEASE: ${ped4ant.build.label}"/>
  </target>
 
</project>
 
<!-- $Id: ped4ant-install-check.xml 679 2009-03-01 15:41:38Z ssmc $ -->

Navigation
Personal Tools