Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Building multiple products with separate repositories

I have a working tycho build that builds three related RCP products.  Current configuration has only one repository with bundles from all three RCP products intermingled.   I want to have three different repositories each with only the plugins for that specific RCP product.

What is the best way to accomplish this?

Extract from current pom in project with the three .product files.

<plugin>
<groupId>${tycho-groupid}</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
</executions>
<configuration>
<products>
<product>
<id>com.my.product1</id>
<attachId>product1</attachId>
</product>
<product>
<id>com.my.product2</id>
<attachId>product2</attachId>
</product>
<product>
<id>com.my.product3</id>
<attachId>product3</attachId>
</product>
</products>
</configuration>
</plugin>


Back to the top