如何使用Maven / Tycho构建Eclipse插件,以便在“安装新软件”对话框中使用

时间:2015-06-10 09:31:39

标签: eclipse maven tycho

我想用Jenkins自动化Eclipse插件构建。为此,我使用的是Tycho Maven插件。插件构建工作正常,但我无法通过Eclipse中的安装新软件... 选项进行安装。我必须使用 Export 选项手动部署此插件。

有没有办法自动执行此任务?我创建了另一个项目,一个功能项目,我用Maven构建它。包装为eclipse-feature。 但是,输出目录结构与执行 Export 时创建的结构不同。

以下是我的插件的pom.xm

<?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">

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

<modelVersion>4.0.0</modelVersion>
<groupId>com.acme.viewer</groupId>
<artifactId>ViewerPlugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<build>
    <plugins>
        <plugin>
            <groupId>org.eclipse.tycho</groupId>
            <artifactId>tycho-maven-plugin</artifactId>
            <version>0.23.0</version>
            <extensions>true</extensions>
        </plugin>
    </plugins>
</build>
</project>

以下是我的功能的pom.xml

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>ViewerPlugin.Feature</groupId>
  <artifactId>ViewerPlugin.Feature</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>eclipse-feature</packaging>

  <repositories>
    <repository>
      <id>luna</id>
      <url>http://download.eclipse.org/releases/luna</url>
      <layout>p2</layout>
    </repository>
  </repositories>
  <build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-maven-plugin</artifactId>
        <version>0.23.0</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>

1 个答案:

答案 0 :(得分:2)

Install New Software...期待eclipse repository structure

您需要创建更新网站项目并将包装用作eclipse-repository

检查tycho包装类型here