eclipse RCP maven / tycho缺少需求'bundle org.eclipse.e4.core.di'

时间:2017-09-07 18:26:50

标签: java eclipse maven rcp tycho

Eclipse RCP / IDE-Plug-in项目依赖于org.eclipse.e4.core.diorg.eclipse.core.runtime等几个Eclipse模块。

此项目在Eclipse IDE for Committers环境中编译,并使用.target文件进行依赖关系设置。

我想为此项目添加无头maven / tycho构建,导致错误如下:

[ERROR] Cannot resolve project dependencies:
[ERROR]   Software being installed: org.myplugin.someservice 1.0.0
[ERROR]   Missing requirement: org.myplugin.someservice 1.0.0 requires 'bundle org.eclipse.e4.core.di 0.0.0' but it could not be found

项目设置如下:

releng/
     org.myplugin.releng/
          pom.xml (contains tycho-plugins def, modules, target ref)
     org.myplugin.target/
          Neon.target
          pom.xml (contains 'eclipse-target-definition')
plugins/
    org.myplugin.someservice/
          pom.xml
          META-INF/
              MANIFEST.MF (contains reference to org.eclipse.e4.core.di)

我使用了Lars Vogel的教程(http://www.vogella.com/tutorials/EclipseTycho/article.html#exercise-using-a-target-platform-for-the-build)进行基础设置和理解。

目标文件的内容是:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target name="Neon" sequenceNumber="43">
    <locations>
        <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="false" type="InstallableUnit">
            <unit id="org.eclipse.platform.sdk" version="4.6.3.M20170301-0400"/>
            <unit id="org.eclipse.pde.feature.group" version="3.12.3.v20170301-0400"/>
            <unit id="org.eclipse.pde.source.feature.group" version="3.12.3.v20170301-0400"/>
            <unit id="org.eclipse.platform.ide" version="4.6.3.M20170301-0400"/>
            <unit id="org.eclipse.equinox.sdk.feature.group" version="3.12.0.v20170209-1843"/>
            <unit id="org.eclipse.rcp.feature.group" version="4.6.3.v20170301-0400"/>
            <repository location="http://download.eclipse.org/eclipse/updates/4.6"/>
        </location>
        <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="false" type="InstallableUnit">
            <unit id="org.eclipse.emf.cdo.epp.feature.group" version="4.5.0.v20160607-1511"/>
            <unit id="org.eclipse.emf.sdk.feature.group" version="2.12.0.v20160526-0356"/>
            <unit id="org.eclipse.emf.compare.diagram.papyrus.feature.group" version="3.2.1.201608311750"/>
            <unit id="org.eclipse.xtext.sdk.feature.group" version="2.10.0.v201605250459"/>
            <unit id="org.eclipse.gmf.runtime.sdk.feature.group" version="1.10.0.201606071959"/>
            <unit id="org.eclipse.gmf.runtime.notation.sdk.feature.group" version="1.10.0.201606071631"/>
            <unit id="org.eclipse.uml2.sdk.feature.group" version="5.2.3.v20170227-0935"/>
            <unit id="org.eclipse.emf.compare.ide.ui.feature.group" version="3.2.1.201608311750"/>
            <repository location="http://download.eclipse.org/releases/neon"/>
        </location>
    </locations>
</target>

这主要捕获了我的Eclipse安装信息打印出的已安装软件的内容。

target/pom.xml看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.myplugin</groupId>
        <artifactId>org.myplugin.releng</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <relativePath>../org.myplugin.releng/pom.xml</relativePath>
    </parent>
    <groupId>org.myplugin</groupId>
    <artifactId>org.myplugin.target</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>eclipse-target-definition</packaging>
</project>

releng/pom.xml非常大,并指定所有maven / tycho插件,用于依赖项解析的目标文件,目标平台以及所有插件和功能作为模块。

对于一个失败的插件,pom.xml文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.myplugin</groupId>
    <artifactId>org.myplugin.releng</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <relativePath>../../org.myplugin.releng/pom.xml</relativePath>
  </parent>
  <groupId>org.myplugin</groupId>
  <artifactId>org.myplugin.someservice</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>eclipse-plugin</packaging>
</project>

我在stackoverflow上已经阅读了许多类似的问题并尝试了许多修复:

  • 删除版本标记target / pom.xml,
  • 删除相对路径,
  • 使用pom而不是eclipse-target-definition
  • 还有一些

没有任何效果。那我在这里错过了什么?

修改 据我所知,releng/pom.xml应该设置tycho插件和maven的东西。执行mvn clean verfiy命令时应构建解决方案,而releng/pom.xml中指定的Neon.target定义需要target/pom.xmltarget/Neon.target来获取Eclipse环境(包括org.eclipse.e4.core.di }和org.eclipse.core东西)以及任何进一步定义的依赖项。

EDIT2: 我的eclipse-target-definition插件配置如下:

<profile>
    <id>Neon.target</id>
    <activation>
        <activeByDefault>false</activeByDefault>
    </activation>
    <properties>
        <xtext-version>2.10.0</xtext-version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>target-platform-configuration</artifactId>
                <version>${tycho-version}</version>
                <configuration>
                    <includePackedArtifacts>true</includePackedArtifacts>
                    <target>
                        <artifact>
                            <groupId>org.myplugin</groupId>
                            <artifactId>org.myplugin.target</artifactId>
                            <version>1.0.0-SNAPSHOT</version>
                            <classifier>org.myplugin.target</classifier>
                        </artifact>
                    </target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</profile>

EDIT3:我正在使用Tycho版本1.0.0

EDIT4 修正了target/pom.xml中的拼写错误。

2 个答案:

答案 0 :(得分:1)

您需要使用-P Neon.target运行Maven来激活<profile>;否则你的target-platform-configuration将不会成为构建的一部分。

就个人而言,我总是在任何target-platform-configuration之外都有默认<profile>。这可以是,例如,当前版本的Eclipse的目标定义(截至本文时:Oxygen)。我只会使用`for 异常的目标定义,比如旧的Eclipse版本(在你的情况下:Neon)。但这只是我个人的最佳实践。

答案 1 :(得分:-1)

实际上我解决了我的问题,但不像我预期的那样。我认为它不是应该工作但现在它是如何工作的:

我根据this question的答案向org.myplugin.releng/pom.xml父pom添加了以下配置:

<repositories>
    <repository>
        <id>neon</id>
        <layout>p2</layout>
        <url>http://download.eclipse.org/releases/neon/</url>
    </repository>
</repositories>

之前我做过,但错过了我已经在pom.xml中的其他位置有一个存储库部分导致它失败并且在我的愤怒中迷失了该轨道:D

实际上我仍然相信它应该从目标文件中获取该信息。我注意到在成功构建时,目标文件在父pom 之后被评估,导致它在处理目标定义文件之前需要所有依赖项。

我打赌我的配置仍然存在问题,但至少它现在正在构建。如果有人有任何想法虽然它会以某种方式让我放心:)