<taskdef classpathref="weblogic.classpath" name="wlappc"
classname="weblogic.ant.taskdefs.j2ee.Appc"/>
<wlappc
source="${build.dir}"
output="${build.dir}"
forceGeneration="true"
lineNumbers="${debug.option}"/>
However, I get the following error:
/home/ostrowskis/workspace/identDemo/build.xml:175:
java.util.MissingResourceException: Can't find bundle for base name
weblogic.i18n.J2EELogLocalizer, locale en_US
I'm using Ant 1.6 (not the BEA-provided Ant) so I'm not sure if there
are more variables I need to set. I want to have a self-contained Ant
build file for all of this, and not be reliant on the Weblogic install
for builds.
I tried just adding the full classpath of the LogLocalizer properties file in,
with no succes.
I tried extracting the file from the jar file and adding the base directory to
the classpath with no success. I have tried using the resource attribute rather
than the file attribut in my class path.
I have not attempted to point my 1.6.1 ant at the weblogic.jar file yet, because
I need to get some devlopment done, but if I have time I later I was thinking
that this might be the a productive approach. Any thoughts?
Here are some relavant snipits from my ant script:
<path id="path.weblogic">
<!--
<fileset dir="C:\xxxx\wlprops\weblogic\i18n">
<include name="J2EELogLocalizer.properties"/>
</fileset>
<pathelement path="C:\xxxx\wlprops"/>
<pathelement path="weblogic/i18n/J2EELogLocalizer.properties"/>
-->
<pathelement path="${weblogicJar}"/>
</path>
<taskdef file="${base.dir}/weblogicTasks.properties" classpathref="path.weblogic"/>
-----------------------------------------------------------------------------
here is the contents of the weblogicTask.properties
# ResourceBundle properties file for Weblogic Tasks
# WLS tasks
wldeploy=weblogic.ant.taskdefs.management.WLDeploy
wlcompile=weblogic.ant.taskdefs.build.WLCompileTask
wlappc=weblogic.ant.taskdefs.j2ee.Appc
"Ronald Trask" <rtr...@echo-inc.com> wrote in message news:<40756ac3$1...@newsgroups.bea.com>...