Suggestion to modify your releng/pom.xml [message #1451722] |
Fri, 24 October 2014 07:38 |
Eclipse User |
|
|
|
Hi,
As of today you maven pom has an entry like this:
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-packaging-plugin</artifactId>
> <version>${tycho-version}</version>
> <configuration>
> <archiveSite>true</archiveSite>
> </configuration>
> </plugin>
which is not good because it leads to problems on win32 when you want to
package up your application because features are packaged as exploded
structures and at least on my win8.1 this fails InnoSetup!
I suggest you replace it with:
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-packaging-plugin</artifactId>
> <version>${tycho-version}</version>
> <configuration>
> <archive>
> <addMavenDescriptor>false</addMavenDescriptor>
> </archive>
> </configuration>
> </plugin>
The wizards project wizards go adjusted with
https://bugs.eclipse.org/bugs/show_bug.cgi?id=448574
Tom
|
|
|
Powered by
FUDForum. Page generated in 0.04730 seconds