ant Tool installieren



  • Hallo,
    ich habe bei mir ant installiert,
    ANT_HOME,
    JAVA_HOME
    gesetzt und auch
    das ant bin Verzeichnis in den Windows Path aufgenommen.

    Trotzdem erhalte ich immer die folgende Meldung, wenn ich in die Kommandozeile ant eintippe:

    c:\>ant
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)

    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [depre
    The default VM is client.

    -cp <class search path of directories and zip/jar file
    -classpath <class search path of directories and zip/j
    A ; separated list of directories, JAR a
    and ZIP archives to search for class fil
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -showversion print product version and continue
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions

    Ich verstehe das nicht, was mache ich falsch?



  • ant home
    java home
    und noch den classpath

    PATH=%PATH%;e:\ant\bin
    SET CLASSPATH=.;e:\ant\lib %CLASSPATH%
    set ANT_HOME=e:\j2sdk1.4.2_03\lib

    wenn alles richtig, sucht er build.xml bei aufruf



  • Hallo,

    ich habe mittlerweile den Grund für das Problem gefunden.
    Der Grund war, daß ich in ANT_HOME am Ende ein Backslash hatte,
    also statt
    ANT_HOME=c:\ant
    stand bei mir
    ANT_HOME=c:\ant\

    Darauf muß man erst mal kommen!

    Gruß
    smile


Anmelden zum Antworten