您的位置:首页 > 其它

Ant-JMS Exception: taskdef class weblogic.ant.taskdefs.management.WLConfig cannot be found

2012-07-31 13:31 573 查看
Issue:

When you config WLS using Ant, you may got following build failed error message.



Exception:

taskdef class weblogic.ant.taskdefs.management.WLConfig cannot be found.



Solution:

You need to specify the location of weblogic.jar as below.



<taskdef name="wlconfig" classname="weblogic.ant.taskdefs.management.WLConfig">
         <classpath>
            <pathelement location="X:\wlserver_10.3\server\lib\weblogic.jar"/>
        </classpath>
    </taskdef>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐