Questions tagged [eclipse-juno]

Juno is the code name for Eclipse versions 3.8 and 4.2 that were released on June 27, 2012. Use this tag for questions which are specific to this Eclipse release, in most cases you should also specify the eclipse tag.

For more information visit the official Juno site.

Download from here

641 questions
6
votes
3 answers

How do I fire up the Subversion Connections Discovery after installing the plugin in Eclipse?

I manually installed Eclipse Juno Java EE on my Ubuntu 12.04, inside the /usr/lib folder, then proceeded creating a link to the eclipse executable under /usr/bin and finally successfully started the program. After installing the Subversive plugin, a…
Michele Palmia
  • 2,402
  • 2
  • 25
  • 28
6
votes
3 answers

How to make GGTS / STS super fast?

I am using GGTS 3.2 JUNO 4.2.2 with Grails 2.2.1. It occurs to me that the environment is very slow after a while. What can I do to make it faster? Is there a way to use the full potential of the underlying system? What I did was (GGTS.ini):…
Michael
  • 32,527
  • 49
  • 210
  • 370
6
votes
4 answers

Resource leak while using try...finally?

I was working normally in eclipse when I got bugged by a resource leak warning in both return values inside the try block in this method: @Override public boolean isValid(File file) throws IOException { BufferedReader reader = null; try …
Polyana Fontes
  • 3,156
  • 1
  • 27
  • 41
6
votes
2 answers

How do I speed up Eclipse Juno?

After updating to Eclipse Juno I found that it intermittently freezes when I change views. It also becomes slow. Adjusting the Heap size does not have any positive effect on the performance. How do I improve the performance of Eclipse?
Pushkar
  • 7,450
  • 10
  • 38
  • 57
6
votes
1 answer

full screen editor in Eclipse Juno

There are a few plugins that allow full screen editing in Eclipse but I can't find any that I can install on Juno. Does anyone know whether such a thing exists? When I search for "full screen" in the marketplace, for example, several examples show…
jaybee
  • 1,897
  • 2
  • 16
  • 29
6
votes
13 answers

Slowness in Eclipse Juno (4.2)

I've had some issues with slowness switching tabs in Eclipse 4.2 Juno and was hoping someone might have some answers. The original delay was about 10 seconds which dropped to 2-4 once I specified the java vm in the eclipse.ini file, but that's still…
seagoj
  • 259
  • 1
  • 2
  • 14
6
votes
2 answers

Subclipse installed but no features appear in Eclipse 4.2 Juno

I've installed Eclipse 4.2 (Juno) and am trying to get Subclipse to work. I used the 1.8.x update site: http://subclipse.tigris.org/update_1.8.x Installing is no problem. Here's what it looks like installed: However, even though it's installed,…
Andrew Mao
  • 35,740
  • 23
  • 143
  • 224
6
votes
3 answers

How to export emma coverage to HTML in eclipse?

I'm using Eclipse Juno and I want to get Emma code coverage. Right now I am getting the coverage in coverage window of Eclipse. But what should I do if I want the full coverage in HTML format. Previously when I was using indigo, I was having an…
user1661985
  • 71
  • 1
  • 3
6
votes
4 answers

PMD-Plugin in Eclipse/Juno not installable through marketplace

I recently upgraded from Eclipse (for Java/EE developers, x64) "Indigo" to "Juno". Unluckily the PMD-Plugin (http://marketplace.eclipse.org/content/pmd-eclipse) does not seems to be available for this product. I was unable to find another way of…
Robert Heine
  • 1,820
  • 4
  • 29
  • 61
6
votes
3 answers

Switch perspective in a RCP application since Eclipse Juno?

In my RCP application I use this code to switch perspective : IWorkbenchWindow window = getViewSite().getWorkbenchWindow(); window.getWorkbench().showPerspective(PRODUCT_PERSPECTIVE_ID, window); I didn't change my code but I changed my developement…
Denys Séguret
  • 372,613
  • 87
  • 782
  • 758
6
votes
3 answers

Cannot set Eclipse Juno C++ with std=c++11

I have Eclipse Juno C++ ( Build id: 20120614-1722 ). I'm trying to set the compiler invocation arguments with instruction -std=c++11 or -std=c++0x but while compiling the code below. There is no "Tool Settings" in Eclipse Juno (at least for Mac),…
Roman Kagan
  • 10,440
  • 26
  • 86
  • 126
6
votes
2 answers

Where did the Apache Derby Eclipse plug-in go?

Edit: According to the Derby community the Eclipse plug-in won't be maintained nor built automatically along the Derby project. But is there anybody still using this plug-in? Because if so, is there a place he/she publishes the actual builds -…
Trainbird
  • 61
  • 1
  • 1
  • 4
6
votes
2 answers

Eclipse Juno Internal Web Browser unavailable (Ubuntu)

I've installed Eclipse (Juno) on Ubuntu Precise and am unable to use Eclipse's internal web browser. I'm getting this error: SWT Browser control is not available I've searched around and haven't found a solution that works. Thanks for your…
MikeP
  • 195
  • 2
  • 8
6
votes
1 answer

How to properly close a FileChannel obtained from a FileOutputStream

I just opened some old code in the current Eclipe Juno Release Candidate and noticed a shiny new warning: Resource leak. It was triggered by code like this: FileChannel out = new FileOutputStream(file).getChannel(); try { ...Do something with…
kayahr
  • 20,913
  • 29
  • 99
  • 147
5
votes
3 answers

Eclipse IDE debugging - code not reflects new changes

I'm using Eclipse IDE (4.2). When I make a change in Eclipse and try to debug it, the previous version is compiled, but not the new one. To get around this, I do maven clean/build and then refresh the project. But this is very tedious and I need to…
user648244
  • 1,240
  • 7
  • 26
  • 41