Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Can't get product-export to work

Hi Jose,

not sure if that helps but I added Product build to my Tycho Tutorial:

http://www.vogella.com/articles/EclipseTycho/article.html

Best regards, Lars

2012/8/9 Rodriguez, José <Jose.Rodriguez@xxxxxxxxxxx>:
> Hi Jan,
>
>
>
> Thanks a lot for the link. We are now able to generate the exe files.
>
>
>
> We are new to rcp dev and not very aware of best practices. What we did :
>
>
>
> -       Change the packaging from eclipse-plugin to eclipse-repository (we
> still have the code and the product in this project)
>
> -       Add the following lines in our pom:
>
> <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>
>
>          </plugins>
>
>    </build>
>
>
>
> I guess it’s a bit quick and dirty but at least we have pour binaries.
>
>
>
> Should we create a new project just to manage this process?
>
>
>
> Regards,
>
> J.
>
>
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user
>


Back to the top