Tycho:如何部署 eclipse-plugin 的源 jar 包?

发布于 2024-11-02 02:00:30 字数 615 浏览 0 评论 0原文

在我的父pom中,我得到了这个配置来部署源jar:

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-source-plugin</artifactId>
      <executions>
        <execution>
          <goals>
            <goal>jar</goal>
            <goal>test-jar</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

但是tycho构建模块忽略了这一点,所以它们的源没有安装/部署在maven存储库中。这意味着我不能将它们包含在程序集中(特别是如果程序集模块位于另一个 git 存储库中)。

是否可以配置其中一个 tycho 插件来构建和部署源 jar?

In my parent pom I got this configuration to deploy sources jars:

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-source-plugin</artifactId>
      <executions>
        <execution>
          <goals>
            <goal>jar</goal>
            <goal>test-jar</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

But the tycho build modules ignore that, so their sources aren't installed/deployed in the maven repository. Which means I can't include them in an assembly (especially if the assembly module is located in another git repository).

Is it possible to configure one of the tycho plugins to build and deploy sources jars?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞清仓 2024-11-09 02:00:30

使用此:

  <plugin>
    <groupId>org.sonatype.tycho</groupId>
    <artifactId>maven-osgi-source-plugin</artifactId>
    <version>${tycho-version}</version>
    <executions>
      <execution>
        <id>plugin-source</id>
        <goals>
          <goal>plugin-source</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

请参阅 https://github.com/jsievers /tycho-demo/blob/master/tychodemo.parent/pom.xml

Use this:

  <plugin>
    <groupId>org.sonatype.tycho</groupId>
    <artifactId>maven-osgi-source-plugin</artifactId>
    <version>${tycho-version}</version>
    <executions>
      <execution>
        <id>plugin-source</id>
        <goals>
          <goal>plugin-source</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

See https://github.com/jsievers/tycho-demo/blob/master/tychodemo.parent/pom.xml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文