Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Nov 2002 14:23:06 +0100
From:      Lutz Bichler <Lutz.Bichler@UniBw-Muenchen.de>
To:        Greg Lewis <glewis@eyesbeyond.com>
Cc:        freebsd-java@freebsd.org
Subject:   Re: Solved (was Re: java compilation problem)
Message-ID:  <200211171423.06127.Lutz.Bichler@unibw-muenchen.de>
In-Reply-To: <20021117051532.A32148@misty.eyesbeyond.com>
References:  <200211151622.30595.Lutz.Bichler@unibw-muenchen.de> <200211161341.23260.Lutz.Bichler@unibw-muenchen.de> <20021117051532.A32148@misty.eyesbeyond.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Saturday 16 November 2002 19:45, you wrote:
> Can you construct a small ant build file which reproduces the problem?
-----------------------------------------------------------------------
<project name=3D"mofgen" default=3D"uml" basedir=3D".">
  <property name=3D"build" location=3D"build"/>
  <property name=3D"result" location=3D"tmp"/>

  <target name=3D"init">
    <tstamp/>
    <mkdir dir=3D"${build}"/>
  </target>

  <target name=3D"uml" depends=3D"init"
=09description=3D"generate uml library" >
    <javac srcdir=3D"${result}" destdir=3D"${build}">
      <classpath>
        <fileset dir=3D"tmp">
          <include name=3D"**"/>
        </fileset>
      </classpath>
    </javac>

    <jar jarfile=3D"bin/istuml.jar"   =20
         basedir=3D"${build}"
         includes=3D"de/**"/>
  </target>

  <target name=3D"clean"
        description=3D"clean up" >
    <delete dir=3D"${build}"/>
  </target>
</project>
------------------------------------------------------------------------
Removing the classpath within the uml target solved the problem.


--=20
Lutz Bichler
Institute for Software Technology, Department of Computer Science
University of the Federal Armed Forces Munich, D-85577 Neubiberg, Germany=
=20
TEL/FAX: +49(0)89 6004-2261/-4447, NET: lutz@informatik.unibw-muenchen.de

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-java" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200211171423.06127.Lutz.Bichler>