what is best practice for adding platform dependent resources to products which were respectively built by the maven tycho plugin for different platforms. The platform configuration looks like this:
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<extensions>true</extensions>
<configuration>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
...
All artifacts are built perfectly but I have this problem. In my case, I would like to copy platform specific dll (or such) files into the respective artifact. These files are used by JNI.
Many thanks for your suggestions.