1

我正试图让 phing 与 liquibase 一起工作。但是 pPing 给出了这个显着的错误(老实说我在网上找不到)

Execution of target "update-database" failed for the following reason: PathElement (unknown) doesn't support the 'location' attribute.

BUILD FAILED
PathElement (unknown) doesn't support the 'location' attribute.
Total time: 0.1206 seconds

具体的命令是:

<path id="liquibasepath">
  <pathelement location="${basedir}/install/lib/liquibase.jar" />
  <pathelement location="${basedir}/install/lib/jdbc-mysql.jar" />
</path>

我尝试在线搜索,但没有很好的文档将 phing 与 liquibase 一起使用。并且该错误既不会产生体面的结果。

4

2 回答 2

0

尝试在 pathelement 中使用“path”属性而不是 location

于 2011-09-19T22:14:22.770 回答
0

正确答案应该是:这是 ant,不是 phing。我试图用错误的程序运行它。(在构建文件中确实应该有一些迹象;))。

评论的人让我走上了正确的道路,不能接受这个作为答案。

于 2011-09-20T07:42:16.920 回答