Как мне скопировать все jar-файлы проекта eclipse, на которые есть ссылки, с помощью ant4eclipse? - PullRequest
1 голос
/ 22 октября 2009

Я пробовал вот так ( ссылка ):

<taskdef resource="net/sf/antcontrib/antlib.xml" />
<taskdef resource="net/sf/ant4eclipse/antlib.xml" />

<target name="copy_jars">
  <getEclipseClasspath workspace="${basedir}/.."
                       projectname="MyProject"
                       property="classpath"
                       relative="false"
                       runtime="true"
                       pathseparator="#" />

  <!-- iterate over all classpath entries -->
  <foreach list="${classpath}" delimiter="#"
    target="copy_jar_file" param="classpath.entry" />
</target>

<target name="copy_jar_file">
  <!-- check if current is a .jar-file ... -->
  <if>
    <isfileselected file="${classpath.entry}">
      <filename name="**/*.jar" />
    </isfileselected>
    <then>
      <!-- copy the jar file to a destination directory -->
      <copy file="${classpath.entry}" tofile="${dest.dir}"/>
    </then>
  </if>
</target>

Но я получаю исключение:

[getEclipseClasspath] net.sf.ant4eclipse.model.FileParserException: Could not parse plugin project 'E:\...\MyProject' since it contains neither a Bundle-Manifest nor a plugin.xml!
[getEclipseClasspath]  at net.sf.ant4eclipse.model.pdesupport.plugin.PluginDescriptorParser.parseEclipseProject(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.model.pdesupport.plugin.PluginProjectRoleIdentifier.applyRole(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.model.roles.RoleIdentifierRegistry.applyRoles(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.tools.ProjectFactory.readProjectFromWorkspace(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.tools.resolver.AbstractClasspathResolver.resolveEclipseClasspathEntry(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.tools.resolver.AbstractClasspathResolver.resolveProjectClasspath(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.tools.resolver.ProjectClasspathResolver.resolveProjectClasspath(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.ant.task.project.GetEclipseClassPathTask.resolvePath(Unknown Source)
[getEclipseClasspath]  at net.sf.ant4eclipse.ant.task.project.AbstractGetProjectPathTask.execute(Unknown Source)
[getEclipseClasspath]  at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
[getEclipseClasspath]  at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
[getEclipseClasspath]  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[getEclipseClasspath]  at java.lang.reflect.Method.invoke(Method.java:597)
[getEclipseClasspath]  at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
[getEclipseClasspath]  at org.apache.tools.ant.Task.perform(Task.java:348)
[getEclipseClasspath]  at org.apache.tools.ant.Target.execute(Target.java:357)
[getEclipseClasspath]  at org.apache.tools.ant.Target.performTasks(Target.java:385)
[getEclipseClasspath]  at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
[getEclipseClasspath]  at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
[getEclipseClasspath]  at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
[getEclipseClasspath]  at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
[getEclipseClasspath]  at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
[getEclipseClasspath]  at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
[getEclipseClasspath]  at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)

BUILD FAILED
E:\...\build.xml:132: Exception whilst resolving the classpath of project MyProject! Reason: Could not parse plugin project 'E:\...\MyProject' since it contains neither a Bundle-Manifest nor a plugin.xml!

Я не хочу копировать только банки, а не ссылочные проекты. Есть ли способ параметризации задачи getEclipseClasspath, чтобы она получала только баночки, а не проекты?

1 Ответ

0 голосов
/ 17 февраля 2010

проверить: 1. что атрибут getEclipseClasspath для имени проекта на самом деле является «MyProject» 2. что «MyProject» на самом деле является проектом Java и имеет записи, определенные в пути сборки 3. что вы добавили jar для Ant4Eclipse и AntContrib в путь к классу Ant-Runtime: Меню: «Окно» -> «Настройки» -> «Муравей» -> «Время выполнения» -> «Путь к классам» (вкладка) -> «Домашние записи Ant» -> «Добавить банки» (кнопка)

Пример кода, который вы цитируете, не будет работать, если на Ant4Eclipse и AntContrib есть ссылки только из вашего скрипта ant - эти jar-файлы необходимо добавить в путь к классам времени выполнения Ant в конфигурации Eclipse.

...