| 
Dear Simon,
  
 
thank you for your pointer. The description of the pluginParameter sounds promising. Unfortunately, I can’t seem to get it to work. But I am still a tycho-newbie. 
 
 
The feature containing the default workspace (including .metadata) is called: „ch.hilbri.assist.features.defaults“. I tried to add the config parameter, so that pom.xml of this feature now contains: 
 
 
——————————————————————————— 
<modelVersion>4.0.0</modelVersion> 
<artifactId>ch.hilbri.assist.features.defaults</artifactId> 
<packaging>eclipse-feature</packaging> 
<parent> 
<groupId>assist</groupId> 
<artifactId>ch.hilbri.assist.releng</artifactId> 
<version>2.0.0-SNAPSHOT</version> 
<relativePath>../ch.hilbri.assist.releng</relativePath> 
</parent> 
 
 
<build> 
<plugins> 
<plugin> 
<groupId>org.eclipse.tycho</groupId> 
<artifactId>tycho-packaging-plugin</artifactId> 
<version>0.23.1</version> 
<configuration> 
<useDefaultExcludes>false</useDefaultExcludes> 
</configuration> 
</plugin> 
</plugins> 
</build> 
</project> 
 
——————————————————————————— 
 
 
Unfortunately, this does not change anything. The .metadata folder is still excluded … What did I miss? 
 
 
Thank you for efforts and best regards, 
 
 
Robert 
 
 
 
Hi Robert,
  
 
I've come across this some time ago. I believe you will need to set the tycho packaging plugin parameter "useDefaultExcludes" [1] to false in the pom file for your feature. There are a bunch of files and folders excluded by default - including
 .metadata - see [2]. You may need to replicate some of the default exclude patterns in your pom depending on your SCM. 
 
 
 
 
HTH, 
 
 
Simon 
_______________________________________________ 
tycho-user mailing list
 tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit 
https://dev.eclipse.org/mailman/listinfo/tycho-user  
 
 
 
 |