我想在“常规”Maven 3版本(例如JAR或WAR包装)中使用来自远程Eclipse p2存储库的依赖项 - 所有这些都不会将p2 repo转换为本地Maven仓库(这就是osgi-to -maven2和m4e似乎可以。)
理想情况下,我只使用http://maven.eclipse.org/nexus/,但是(但是?)包含很多包。
使用Maven的systemPath不计算!
答案 0 :(得分:21)
看起来我正在回答我自己的另一个问题..
首先,您可以使用Tycho从P2存储库添加对包的依赖:
让我们尝试一下:
$ 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,则不会包含工件。要解决这个问题,我们首先将依赖项中包含的所有类解包到某个目录中,然后将该目录重新打包为jar并将其用作构建的最终工件。
对于第一部分(解包),我们将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中的清单:
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包将创建一个jar文件,其中包含我们P2依赖项中的所有代码,重新打包为适当的Maven工件,可以在另一个项目中用作依赖项。
$ 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
答案 1 :(得分:0)
另一种方法是使用b3聚合器在符合maven的布局中镜像p2 repo,如下所述:
Consuming emf bundles from p2 with maven : b3
然后可以使用提供的原始罐子。