在Tycho Project中Eclipse不考虑pom.xml的依赖关系

时间:2012-09-18 11:50:34

标签: eclipse maven tycho

我创建了一个带有eclipse-plugin包装的Tycho项目。该项目包含一些通过pom.xml指定的依赖项。相关的pom部分是:

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <tycho.version>0.15.0</tycho.version>
</properties>
<build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
        <plugin>
            <groupId>org.eclipse.tycho</groupId>
            <artifactId>tycho-maven-plugin</artifactId>
            <version>${tycho.version}</version>
            <extensions>true</extensions>
        </plugin>
        <plugin>
            <groupId>org.eclipse.tycho</groupId>
            <artifactId>target-platform-configuration</artifactId>
            <version>${tycho.version}</version>
            <configuration>
                <pomDependencies>consider</pomDependencies>
                <environments>
                    <environment>
                        <os>win32</os>
                        <ws>win32</ws>
                        <arch>x86</arch>
                    </environment>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86_64</arch>
                    </environment>
                    <environment>
                        <os>macosx</os>
                        <ws>cocoa</ws>
                        <arch>x86_64</arch>
                    </environment>
                </environments>
            </configuration>
        </plugin>
    </plugins>
</build>
<repositories>
    <repository>
        <id>juno</id>
        <layout>p2</layout>
        <url>http://download.eclipse.org/releases/juno</url>
    </repository>
    <repository>
        <id>com.springsource.repository.bundles.release</id>
        <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
        <url>http://repository.springsource.com/maven/bundles/release</url>
    </repository>
    <repository>
        <id>com.springsource.repository.bundles.external</id>
        <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
        <url>http://repository.springsource.com/maven/bundles/external</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>com.springsource.org.testng</artifactId>
        <version>6.4.0</version>
    </dependency>
    <dependency>
        <groupId>com.google.guice</groupId>
        <artifactId>com.springsource.com.google.inject</artifactId>
        <version>2.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.aopalliance</groupId>
        <artifactId>com.springsource.org.aopalliance</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>

而且清单是:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Plugin-project-pure
Bundle-SymbolicName: plugin-project-pure
Bundle-Version: 1.0.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.eclipse.equinox.app,
 org.eclipse.uml2.uml;bundle-version="4.0.0",
 org.eclipse.uml2.uml.resources;bundle-version="4.0.0",
 org.junit;bundle-version="4.10.0",
 com.springsource.org.testng;bundle-version="[6.4.0,6.4.0]"

项目只包含默认包中的一个类,该类使用org.testng.annotations中的注释来测试编译期间是否包含依赖项。

如果我在Maven 3.0.4的命令行上构建项目,一切正常。在Eclipse Juno中导入项目后,我遇到了多个错误。最重要的一个是在清单中,它表明捆绑com.springsource.org.testng无法解析。类中也存在编译错误,因为无法导入注释。该项目配置了Maven Nature。我错过了什么,以便Eclipse Juno也会考虑pom的依赖性吗?

3 个答案:

答案 0 :(得分:10)

您可以避免将项目构建分为两部分的问题:

  • 首先,将您的POM依赖项聚合到p2存储库中。您需要一个eclipse-feature和一个eclipse-repository模块,以及一个单独的父POM,它列出了POM依赖关系并配置pomDependencies=consider
  • 在第二个版本中,将第一个版本中的p2存储库添加到target platform,例如通过指向本地Maven存储库中的构建结果的jar:file: URL。

然后,您还可以在Eclipse中配置目标平台,以包含第一个构建中的p2存储库(这取决于您当前的配置方式)。如果您使用所谓的目标定义文件,您将获得Tycho和Eclipse之间的最佳一致性,您可以将它们用作Eclipse和Tycho中的目标平台。

我知道这一切都需要付出相当大的努力,但是AFAIK没有更好的解决方案可以完全发挥作用。

答案 1 :(得分:10)

maven-RCP问题之间存在的所有问题的最优雅解决方案是使用 p2-maven-plugin。以下是这些问题的简要总结(从上面的链接中删除):

  

为了向Eclipse RCP项目添加第三方依赖项   依赖项必须驻留在P2更新站点中。

     

Eclipse(和其他提供商)提供一组公共更新站点,   但显然并非所有流行和公开可用的依赖项都是   那里(问题编号#1)。

     

由于Eclipse RCP是OSGi环境以便添加依赖项   对于p2更新站点,depenedncy必须是OSGi包(即   问题编号#2)。

     

所以,让我们总结一下:我们所有的工件都必须是OSGi包,   但它们并不总是束,它们必须位于P2中   网站,但我们没有该网站。那我们怎么办呢?

     

并不困难,彼得写的是一个'bnd'工具   可以将你的罐子变成捆绑的克林斯。还有一个   Eclipse RCP提供的便捷工具,可以生成P2站点   (虽然麻烦而痛苦)。这两种工具都假定全部   你的jar /包位于本地文件夹中 - 这意味着你   必须手动下载它们。您可以使用Maven自动化它   有点,但Maven的方式有很大差异   计算依赖树,这不是alwyas兼容的   OSGi方式(即问题编号#3)。让我们详细说明一下   更多。

它允许您定义一个pom打包的项目,该项目将解析所有maven依赖项,将所有非OSGi转换为bundle并从中生成p2站点。

下面是完整的最小pom文件,包括对slf4j-log4j12的依赖(隐式依赖于slf4j和log4j v1.2):

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>me.berezovskiy.project</groupId>
  <artifactId>p2</artifactId>
  <packaging>pom</packaging>
  <version>1.0.0</version>
  <build>
    <plugins>
      <plugin>
        <groupId>org.reficio</groupId>
        <artifactId>p2-maven-plugin</artifactId>
        <version>1.1.1-SNAPSHOT</version>
        <executions>
          <execution>
            <id>default-cli</id>
            <configuration>
              <artifacts>
                <artifact>
                  <id>org.slf4j:slf4j-log4j12:1.7.7</id>
                </artifact>
              </artifacts>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>jetty-maven-plugin</artifactId>
        <version>8.1.12.v20130726</version>
        <configuration>
          <scanIntervalSeconds>10</scanIntervalSeconds>
          <webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory>
          <webApp>
            <contextPath>/site</contextPath>
          </webApp>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <pluginRepositories>
    <pluginRepository>
      <id>reficio</id>
      <url>http://repo.reficio.org/maven/</url>
    </pluginRepository>
  </pluginRepositories>
</project>

P.S。我通常不会回答旧问题和已回答的问题,但在我的情况下,我花了很长时间才以干净优雅的方式解决这个问题,我决定写下这个问题。此外,该解决方案已于2013年底出现。

答案 2 :(得分:6)

从命令行

导航到pom.xml所在的文件夹。

运行mvn eclipse:eclipse

这应该构建一个有效的eclipse项目。