-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a standard osgi repository that includes all equinox bundles
Currently one has to wait until the next release or use the ibuilds composite p2 repository but there is currently no way to fetch latest equinox bundles in a more lightweight way. This uses the new tycho-repositry-plugin to build a standard OSGi repository that could be deployed e.g. as part of the mater verification build.
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?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.eclipse.equinox</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>4.29.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>repository</artifactId> | ||
<packaging>repository</packaging> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-repository-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<extensions>true</extensions> | ||
<executions> | ||
<!-- Additionally we create another repository using the 'local' layout and place it in a deploy folder --> | ||
<execution> | ||
<id>local</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>package-repository</goal> | ||
</goals> | ||
<configuration> | ||
<repositoryLayout>local</repositoryLayout> | ||
<settings> | ||
<repositoryFolderName>deploy</repositoryFolderName> | ||
</settings> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |