0

私は MobileFirst 6.3 を使用しており、Windows 7 で次の ant Build.xml を書きました。最新の CLI がインストールされています。

<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="adapter">
  <taskdef resource="com/worklight/ant/defaults.properties">
    <classpath>
      <pathelement location="C:\Tools\IBM\MobileFirst-CLI\mobilefirst-cli\node_modules\generator-worklight-server\lib\worklight-ant-deployer.jar"/>
    </classpath>
  </taskdef>
  <target name="adapter">
    <adapter-builder
        folder="C:\pruebas\adapters\adapter"
        destinationfolder="C:\pruebas\bin"/>
    </target>
</project>

次のコマンド「ant adapter」を使用してタスクを実行すると、次のエラーが表示されます。

C:\pruebas\ANT>ant adapter
Buildfile: C:\pruebas\ANT\build.xml

adapter:

BUILD FAILED
C:\pruebas\ANT\build.xml:11: Problem: failed to create task or type adapter-buil
der
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.


Total time: 0 seconds

何か助けはありますか?

4

1 に答える 1