Greetings
I am attempting to read a System Resource (i.e.
ClassLoader.getSystemResource( resourceName ). Where resource name is
something like: "/config/proj.properties". I am trying to do this in a JUnit
task. I don't know why, but the file is not found. (Although I am certain
that it is in the Classpath).
Does anyone have any insight for me???

Thanks,
-- Chris

The build.xml snippet follow::

  <property name="efc.lib" value="${basedir}/lib" />
  <property name="efc.build" value="${basedir}/build/java" />
  <property name="efc.ted.toplevel" value="${basedir}/../ted" />

  <path id="et-classpath">
    <pathelement location="${efc.build}" />
    <fileset id="efc_jars" dir="${efc.lib}">
      <include name="**/*.jar" />
    </fileset>
    <pathelement location="${efc.ted.toplevel}" />
  </path>

  <target name="test-1" if="testcase">
    <junit printsummary="yes" haltonfailure="yes" fork="no">
      <jvmarg value="-classic"/>
      <classpath refid="et-classpath"/>
      <formatter type="plain" usefile="false" />
      <test name="${testcase}" />
    </junit>
  </target>

Reply via email to