What and where is mdimport

余生长醉 提交于 2019-12-11 02:55:05

问题


Does anybody with weblogic portal knowledge know what jar file has the "mdimport" ant task definition. It's part of the build file created by the ant export script for wls10.0 but no longer works for 10.3. Any clue or ideas where to find the definition of this


回答1:


You can find it here. your-portal-home"/workshop/com.bea.workshop.cmdline.ant.core_1.0.200.200906102316/workshop-antlib.jar




回答2:


The mdimport task is defined in the xml file antlib.xml. This will be defined in a different jar file depending on your version of weblogic.

<typedef name="mdimport"
          classname="com.bea.wlw.antlib.eclipse.ImportProjectMetadataTask"/>

For example it is define in weblogic92/workshop/lib/wlw-antlib.jar for WLI 9.2.2.

It might be easier to find the jar file by doing a recursive search for the ImportProjectMetadataTask class in all jars.



来源:https://stackoverflow.com/questions/9041655/what-and-where-is-mdimport

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!