gpt4 book ai didi

java - 在常规 Maven 构建中使用来自 Eclipse p2 存储库的依赖项?

转载 作者:IT老高 更新时间:2023-10-28 20:41:33 27 4
gpt4 key购买 nike

我想在“常规”Maven 3 构建(例如 JAR 或 WAR 打包)中使用来自远程 Eclipse p2 存储库的依赖项——所有这些都无需将 p2 存储库转换为本地 Maven 存储库(这就是 osgi-to -maven2 和 m4e 似乎可以)。

理想情况下,我会使用 http://maven.eclipse.org/nexus/ ,但它(还没有?)包含很多 bundle 。

使用 Maven 的 systemPath 不算!

最佳答案

看起来我正在回答我自己的另一个问题..

首先,您可以使用 Tycho 添加对来自 P2 存储库的包的依赖:

  • 将构建配置为使用 tycho-maven-plugin。
  • 指定 P2 存储库。
  • 将打包设置为“eclipse-plugin”。
  • 为您的构建创建一个 list 并使用 Require-Bundle 来声明依赖项(例如 org.eclipse.xsd)。还要将 Bundle-Version 设置为我们在 pom.xml 中构建时使用的相同版本。

让我们试一试:

$ mvn dependency:tree
[INFO] com.example:org.eclipse.xsd:eclipse-plugin:0.0.1
[INFO] +- p2.eclipse-plugin:org.eclipse.xsd:jar:2.6.0.v20100914-1218:system
[INFO] ...
[INFO] \- p2.eclipse-plugin:org.eclipse.core.filesystem:jar:1.3.1.R36x_v20100727-0745:system

我们的依赖已成功从 P2 存储库中解决。不幸的是,我们还没有完成。该依赖项已添加到系统范围,这意味着如果我们创建一个依赖于我们构建的 webapp,则不会包含 Artifact 。为了解决这个问题,我们首先将依赖项中包含的所有类解压缩到某个目录,然后将该目录重新打包为 jar 并将其用作我们构建的最终 Artifact 。

对于第一部分(解包),我们将 maven-dependency-plugin 添加到我们的构建中,并将其配置为在打包阶段运行其 unpack-dependencies 目标。对于第二部分(重新打包),我们将 maven-assembly-plugin 添加到我们的构建中,并将其配置为在打包阶段运行其单一目标。我们还需要创建和配置自定义程序集描述符。

我们的构建现在包含 3 个文件: pom.xml 中的构建文件:

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>org.eclipse.xsd</artifactId>
<version>0.0.1</version>
<packaging>eclipse-plugin</packaging>
<repositories>
<repository>
<id>helios</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/helios</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>0.12.0</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/dependency</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/repackaged.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

META-INF/MANIFEST.MF 中的 list :

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Ignored
Bundle-SymbolicName: Ignored
Bundle-Version: 0.0.1
Require-Bundle: org.eclipse.xsd
Bundle-Vendor: Ignored

src/main/assembly/repackaged.xml中的程序集描述符:

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>repackaged</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/dependency/</directory>
<outputDirectory>/</outputDirectory>
<useDefaultExcludes>true</useDefaultExcludes>
</fileSet>
</fileSets>
</assembly>

现在 mvn package 将创建一个 jar 文件,其中包含我们 P2 依赖项中的所有代码,重新打包为适当的 Maven Artifact ,准备在另一个项目中用作依赖项。

$ jar tf target/org.eclipse.xsd-0.0.1-repackaged.jar 
org/eclipse/xsd/ecore/XSDEcoreBuilder$1.class
org/eclipse/xsd/ecore/XSDEcoreBuilder$2.class
org/eclipse/xsd/ecore/XSDEcoreBuilder$Comparator.class
org/eclipse/xsd/ecore/XSDEcoreBuilder$EffectiveOccurrence.class
org/eclipse/xsd/ecore/XSDEcoreBuilder.class

关于java - 在常规 Maven 构建中使用来自 Eclipse p2 存储库的依赖项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6682028/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com