Skip to main content



      Home
Home » Eclipse Projects » e(fx)clipse » Suggestion to modify your releng/pom.xml
Suggestion to modify your releng/pom.xml [message #1451722] Fri, 24 October 2014 03:38
Eclipse UserFriend
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
Previous Topic:Locale changes at runtime
Next Topic:Jar Manifest Wizard stopping short
Goto Forum:
  


Current Time: Mon Jul 07 23:13:26 EDT 2025

Powered by FUDForum. Page generated in 0.02816 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top