Questions tagged [eclipse-neon]

Neon is the code name for Eclipse 4.6 released on 22 June 2016. Use this tag for questions which are specific to this Eclipse release, in most cases you should also specify the eclipse tag. Note that Eclipse Neon requires Java 8 to run. Neon.1, Neon.2, and Neon.3 are the code names for the 4.6.1, 4.6.2, and 4.6.3 fix releases.

Official site for Eclipse Neon: https://eclipse.org/neon

Help for Eclipse Neon: https://help.eclipse.org/neon

Note that Eclipse Neon requires Java 8 to run.

338 questions
3
votes
3 answers

Eclipse Neon Local Websphere not starting

Issue: When attempting to start a IBM Websphere server, the console view displays the server as successfully started by displaying the message: server... open for e-business. However, the status of the server in the server view remains in a starting…
Bgvv1983
  • 1,256
  • 1
  • 13
  • 27
3
votes
0 answers

Eclipse Neon.1 generics compilation error: cannot infer type arguments

MWE: import java.util.Comparator; import java.util.TreeMap; import static java.util.Arrays.asList; import static java.util.stream.Collectors.groupingBy; import static java.util.stream.Collectors.mapping; import static…
Marcin Kłopotek
  • 5,271
  • 4
  • 31
  • 51
3
votes
1 answer

Opening specific help topic in eclipse help window programatically?

How I can open specific help topic in eclipse help window programatically running on Linux(Ubuntu 14.04)? Ex: I want to open "Tasks view" help as shown in below pic pro-grammatically. I tried with: PlatformUI.getWorkbench().getHelpSystem() …
Chandrayya G K
  • 8,719
  • 5
  • 40
  • 68
3
votes
2 answers

Unable to launch Eclipse neon 4.6 - asks for roo distribution

I installed Eclipse Neon 4.6 on my linux (Mint) OS. After unsuccessfully trying to install STS (Spring), I uninstalled and reinstalled using the update site - http://dist.springsource.com/release/TOOLS/update/e4.6/. Now, when I launch eclipse,…
Venkat M
  • 31
  • 1
3
votes
1 answer

Eclipse Neon contantly freezing

Eclipse Neon is freezing constantly, no more than two minutes after being started. There are no error messages or exceptions shown, the workbench simply stops responding. In the .log file are innumerate exceptions like: !ENTRY org.eclipse.ui 4 4…
Luís de Sousa
  • 5,765
  • 11
  • 49
  • 86
3
votes
1 answer

Eclipse neon: java formatter keeps spaces on empty lines?

Within our team, we have an eclipse formatter profile that we are using for some years. It seemed to work fine within Eclipse Neon, but today I discovered that the formatter is no longer "trimming" empty lines. When using older versions of eclipse,…
GhostCat
  • 137,827
  • 25
  • 176
  • 248
3
votes
0 answers

ECLIPSE NEON WITH MAVEN PLUGIN. CompilerMojo ERROR ON COMPILING

I am starting a little web project with MAVEN PLUGIN on ECLIPSE NEON. I am using: -LINUX MINT 17.3; -jdk1.8.0_92; -apache-maven-3.3.9. This is the prompt on mvn -version: Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5;…
Filippo De Bellis
  • 489
  • 1
  • 5
  • 9
3
votes
1 answer

Drools 6.4.0.Final Installation In Eclipse

I am trying to install drool 6.4.0.Final in eclipse Neon. I use the update site url and it works fine. But once eclipse starts calculating requirements etc. It proceeds to a page which shows that: Cannot complete the install because one or more…
Ashish Sood
  • 192
  • 12
3
votes
4 answers

Eclipse Neon (Java EE IDE) Javascript Editor Broken

Problem Description Opening up a file (app.js) with the JavaScript Editor gives me the error: "Editor could not be initialized." Details: java.lang.NoSuchMethodError: jdk.nashorn.internal.runtime.ECMAException.getEcmaError()Ljava/lang/Object; at…
2
votes
2 answers

Is there a way to have two different font sizes within the same text line in JavaFX?

I'm making a windows-run-mobile-concept stock market game using Java, and it's JavaFX libraries, and I'd like to have the form of currency on the lower right of the player's current balance, (in my case USD). The catch with this is, is that whenever…
2
votes
3 answers

Why is the scanf statement executing before the first printf statement?

The following is a simple C program: #include int main(void) { //Question 2.16 //Variables that will be used to store the two numbers int num1; int num2; //Message to prompt the user printf ("Enter two…
D Brown
  • 460
  • 3
  • 8
  • 22
2
votes
1 answer

Error in Eclipse, viewer filter class does not exist

I'm working with Eclipse 4.6.3 and when I open a .java file I got the 2 following errors The org.eclipse.jdt.ui.javaElementFilters plug-in extension "org.eclipse.buildship.ui.packageexplorer.filter.gradle.subProject" specifies a viewer filter class…
vincrichaud
  • 2,218
  • 17
  • 34
2
votes
1 answer

Eclipse Neon / Maven / error Failed to parse plugin descriptor for org.apache.maven.plugins:maven-install-plugin:2.4 / invalid LOC header

I'm trying to run Maven install command on Eclipse Neon, but all the time the following error appears: [ERROR] Failed to parse plugin descriptor for org.apache.maven.plugins:maven-install-plugin:2.4…
AnnaG
  • 21
  • 2
2
votes
1 answer

Unable to create jar using AntBuilder in groovy

I am trying to create Ant Build of my project using groovy. I am getting "Caught: : jar doesn't support the "destdir" attribute" error while trying to create jar using AntBuilder in groovy. My groovy file is as follows build.groovy package…
user1734698
  • 157
  • 2
  • 2
  • 17
2
votes
1 answer

Java fx program run and compile but do not show visible gui

So I am writing a program that will be used to automination of updating windows machines. Last day I just at saved current working state of program and go home. Today when I tried to work on it I noticed that it is compiling and it is runing without…