我想在eclipse中使用SVNAnt。 但是当我运行我的脚本时,我收到了这条消息:
Buildfile: X:\XXX\bin\ant\axis_bujava.xml
[typedef] Could not load definitions from resource org/tigris/subversion/svnant/svnantlib.xml. It could not be found.
testSVNAnt:
BUILD FAILED
X:\XXX\bin\ant\axis_bujava.xml:11: Problem: failed to create task or type svn
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构建文件:
<?xml version="1.0"?>
<project default="testSVNAnt" basedir=".">
<path id="path.svnant">
<pathelement location="${basedir}/svnant.jar"/>
<pathelement location="${basedir}/svnClientAdapter.jar"/>
</path>
<typedef resource="org/tigris/subversion/svnant/svnantlib.xml" classpathref="path.svnant" />
<target name="testSVNAnt">
<svn username="username" password="pass">
<checkout url="svn://svnurl" destPath="localpath" revision="HEAD"/>
</svn>
<echo message= "Subversion repository url: ${repository.url}" />
</target>
</project>
JAR文件当然是基于。我找不到类似的问题,也没有任何解决方案。
答案 0 :(得分:3)
最终使用SvnAnt 1.3.1。
使用此代码检查工作正常:
<?xml version="1.0"?>
<project default="main" basedir=".">
<path id="path.svnant">
<pathelement location="${basedir}/svnant.jar" />
<pathelement location="${basedir}/svnClientAdapter.jar" />
<pathelement location="${basedir}/svnjavahl.jar" />
</path>
<typedef resource="org/tigris/subversion/svnant/svnantlib.xml" classpathref="path.svnant" />
<target name="main">
<svn>
<checkout url="svn://xxx" destPath="X:/XXX" revision="HEAD" />
</svn>
</target>
</project>
感谢您的帮助。
答案 1 :(得分:1)
你必须使用
<taskdef />
而不是<typedef/>
其他一切看起来都不错。
答案 2 :(得分:1)
有同样的问题..将“org / tigris / subversion / svnant / svnantlib.xml”中的“resource”值替换为“svntask.properties”为我做了。
以下示例:(svn_1.0.0; eclipse juno)
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="D:/.../ant-contrib-1.0b3.jar"/>
</classpath>
</taskdef>
<path id="path.svnant">
<pathelement location="D:/.../lib/svnant.jar" />
<pathelement location="D:/.../lib/svnClientAdapter.jar" />
<pathelement location="D:/.../lib/svnjavahl.jar" />
</path>
<typedef **resource="svntask.properties"** classpathref="path.svnant"/>
<target name="ifAvailable">
<available classpathref="path.svnant" **resource="svntask.properties"**
property="temp"/>
<echo message="SVNAnt is available = ${temp}"></echo>
</target>
OUTPUT&GT;&GT;&GT;&GT;&GT;
Buildfile: D:\...\build.xml
ifAvailable: [echo] SVNAnt可用= true 建立成功 总时间:306毫秒
答案 3 :(得分:0)
替换
<taskdef resource="org/tigris/subversion/svnant/svnantlib.xml" />
与
<taskdef resource="svntask.properties"/>
svntask.properties存在于svnant.jar
中