Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    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 07:38
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
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: Tue Apr 16 10:40:29 GMT 2024

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

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

Back to the top