gpt4 book ai didi

hibernate - 如何在 Ant 构建中使用 cpp-tasks

转载 作者:行者123 更新时间:2023-12-03 06:56:38 25 4
gpt4 key购买 nike

我正在使用 Ant 1.8.2 我收到此错误:

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.

我用谷歌搜索了一下。并意识到 ant-contrib 丢失了。之后,我添加 ant-contrib-1.0b3.jar。但是这个 jar 不支持 Ant 1.8.2 并且我不知道使用 cpp-tasks 。我读过http://ant-contrib.sourceforge.net/cpptasks/index.html但这我没有克服。

问候。

最佳答案

我认为你的类路径中没有 ant-contrib jar。下载这个 jar 。并转到 Eclipse 中的窗口首选项。选择 ant-runtime-(Ant Home Entries(默认)) 选择添加外部 jar 。将 jar ant-contrib 包含在您的类路径中,然后按“确定”。

你的build.xml应该像这样

<?xml version="1.0" encoding="UTF-8"?>
<project name="JarCreation" default="Jar" basedir="." xmlns:ac="antlib:net.sf.antcontrib">
<property name="array" value="a,b,c,d"/>
<target name="Jar">
<ac:for list="${array}" param="letter">
<sequential>
<echo>Your Code Here</echo>
<ac:var name="test" value="somethin"/>
</sequential>
</ac:for>
</target>
</project>

**

它会运行!

关于hibernate - 如何在 Ant 构建中使用 cpp-tasks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13739538/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com