Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] environment os/ws/arch variables?

I guess you should use root files for this
http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Ftasks%2Fpde_rootfiles.htm

Jan




-----Original Message-----
From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of Esteban DUGUEPEROUX
Sent: Mittwoch, 19. Dezember 2012 11:52
To: tycho-user@xxxxxxxxxxx
Subject: [tycho-user] environment os/ws/arch variables?

Hi Tycho users,

We use maven tycho to builds a product for differents environments 
(linux, windows, 32/64bits) in our pom.xml we want to copy resources to 
the builded products artifacts in the generate-resources phase :

...
<build>
...
<plugin>
<artifactId>maven-resources-plugin</artifactId>
                 <version>2.5</version>
                 <configuration>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 <executions>
                     <!-- copying the default config in the 
"configuration" folder" -->
                     <!-- for win32 -->
                     <execution>
<id>copy-default-config-win32_x86</id>
<phase>generate-resources</phase>
                         <goals>
                             <goal>copy-resources</goal>
                         </goals>
                         <configuration>
<outputDirectory>${project.build.directory}/products/${product.id}/win32/win32/x86/product/configuration</outputDirectory>
                             <nonFilteredFileExtensions>
<nonFilteredFileExtension>xml</nonFilteredFileExtension>
<nonFilteredFileExtension>users</nonFilteredFileExtension>
                             </nonFilteredFileExtensions>
                             <resources>
                                 <resource>
<directory>config</directory>
                                 </resource>
                             </resources>
                         </configuration>
                     </execution>
         </executions>
             </plugin>


         </plugins>
     </build>
...

but like we want to do that for all environments for which we build a 
product we must copy this "copy-resources" goal for each environments we 
want to build which can do many lines. Do you know a mean to write this 
step more generically to be done for each environments? For example 
using variables for os/ws/arch elements.

Best Regards.

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top