Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] How do I Merge p2 repository builds

Hi,

I'm using tycho version 0.14.1

but in  Tycho-Extras there is no version 0.14.1, so I used version 0.14.0.

regarding the order I did change the  the phase mirror goal from prepare-package to package because the packaging of the repository was not created and I though that this is the problem.

please tell me how should I set the configuration right ?

here is my entire pom, if you need anything else let me know.

<modelVersion>4.0.0</modelVersion>
<artifactId>spml-plugin-update-site</artifactId>
<packaging>eclipse-repository</packaging>
<name>Spml Update Site</name>

<parent>
<artifactId>spml-tycho-parent</artifactId>
<groupId>com.sapiens.spml</groupId>
<version>${spml.bundle.version}</version>
<relativePath>../spml-tycho-parent</relativePath>
</parent>


<dependencies>
<dependency>
<artifactId>com.sapiens.spml.tool.ide</artifactId>
<groupId>com.sapiens.spml</groupId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-p2-extras-plugin</artifactId>
<version>0.14.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>mirror</goal>
</goals>
</execution>
</executions>
<configuration>
<source>
<!-- source repositories to mirror from -->
<repository>
<!-- I removed it from confidentiality reasons -->
                                                        <url>my-update-site-url</url>
<layout>p2</layout>
<!-- supported layouts are "p2-metadata", "p2-artifacts", and "p2" 
(for joint repositories; default) -->
</repository>

<!-- starting from here all configuration parameters are optional -->
<!-- they are only shown here with default values for documentation 
purpose -->

<!-- List of IUs to mirror. If omitted, allIUs will be mirrored. -->
<!-- Omitted IU version element means latest version of the IU -->
<!-- <ius> <iu> <id>org.eclipse.rcp.feature.group</id> </iu> </ius> -->
<!-- The destination directory to mirror to. -->
<destination>${project.build.directory}/repository</destination>
<!-- Whether only strict dependencies should be followed. -->
<!-- "strict" means perfect version match -->
<followStrictOnly>false</followStrictOnly>
<!-- Whether or not to follow optional requirements. -->
<includeOptional>true</includeOptional>
<!-- Whether or not to follow non-greedy requirements. -->
<includeNonGreedy>true</includeNonGreedy>
<!-- Filter properties. E.g. filter only one platform -->


<!-- Whether to filter the resulting set of IUs to only -->
<!-- include the latest version of each IU -->
<latestVersionOnly>false</latestVersionOnly>
<!-- don't mirror artifacts, only metadata -->
<mirrorMetadataOnly>false</mirrorMetadataOnly>
<!-- whether to compress the content.xml/artifacts.xml -->
<compress>true</compress>
<!-- whether to append to the target repository content -->
<append>true</append>
</source>
</configuration>
</plugin>
</plugins>
</build>
</project>

Thanks,

Nadav
On Wed, Jul 25, 2012 at 9:42 AM, Simon Goodall <simon@xxxxxxxxxxxxxxxxxx> wrote:
Hi,

Which version of Tycho are you using? You might want to try using the
same version of Tycho and Tycho-Extras.

I would also suggest checking the execution order is as expected - I
suspect things are not happening in the order you expect.

Simon

On 25 July 2012 07:10, Nadav Hoze <nadavh@xxxxxxxxxx> wrote:
> Hi,
>
> I created an update-site for set of plugins with a feature.
> All is built by tycho and the site is on http server and everything works as
> it should.
> BUT how do I merge new build with previous build for backward compatability?
>
> I tried to use the
> org.eclipse.tycho.extras:tycho-p2-extras-plugin:0.14.0:mirror goal but I get
> the following error.
>
> Unable to parse configuration of mojo
> org.eclipse.tycho.extras:tycho-p2-extras-plugin:0.14.0:mirror for parameter
> destination: Cannot configure instance of
> org.eclipse.tycho.plugins.p2.extras.Repository from
> C:\Sapiens\spml\sources\ide\spml-plugin-update-site\target/repository
>
> please help, this is my pom file (just copied it from
> http://wiki.eclipse.org/Tycho/Additional_Tools):
>
> <build>
> <plugins>
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-p2-director-plugin</artifactId>
> <version>${tycho-version}</version>
> <executions>
> <execution>
> <id>materialize-products</id>
> <goals>
> <goal>materialize-products</goal>
> </goals>
> </execution>
> <execution>
> <id>archive-products</id>
> <goals>
> <goal>archive-products</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> <plugin>
> <groupId>org.eclipse.tycho.extras</groupId>
> <artifactId>tycho-p2-extras-plugin</artifactId>
> <version>0.14.0</version>
> <executions>
> <execution>
> <phase>package</phase>
> <goals>
> <goal>mirror</goal>
> </goals>
> </execution>
> </executions>
> <configuration>
> <source>
> <!-- source repositories to mirror from -->
> <repository>
>                                                           <!-- I removed it
> from confidentiality reasons -->
> <url>my-update-site-url</url>
> <layout>p2</layout>
> <!-- supported layouts are "p2-metadata", "p2-artifacts", and "p2"
> (for joint repositories; default) -->
> </repository>
>
> <!-- starting from here all configuration parameters are optional -->
> <!-- they are only shown here with default values for documentation
> purpose -->
>
> <!-- List of IUs to mirror. If omitted, allIUs will be mirrored. -->
> <!-- Omitted IU version element means latest version of the IU -->
> <!-- <ius> <iu> <id>org.eclipse.rcp.feature.group</id> </iu> </ius> -->
> <!-- The destination directory to mirror to. -->
> <destination>${project.build.directory}/repository</destination>
> <!-- Whether only strict dependencies should be followed. -->
> <!-- "strict" means perfect version match -->
> <followStrictOnly>false</followStrictOnly>
> <!-- Whether or not to follow optional requirements. -->
> <includeOptional>true</includeOptional>
> <!-- Whether or not to follow non-greedy requirements. -->
> <includeNonGreedy>true</includeNonGreedy>
> <!-- Filter properties. E.g. filter only one platform -->
>
>
> <!-- Whether to filter the resulting set of IUs to only -->
> <!-- include the latest version of each IU -->
> <latestVersionOnly>false</latestVersionOnly>
> <!-- don't mirror artifacts, only metadata -->
> <mirrorMetadataOnly>false</mirrorMetadataOnly>
> <!-- whether to compress the content.xml/artifacts.xml -->
> <compress>true</compress>
> <!-- whether to append to the target repository content -->
> <append>true</append>
> </source>
> </configuration>
> </plugin>
> </plugins>
> </build>
>
>
> Thanks,
>
> Nadav
>
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user
>
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top