How to install jdt.core in eclipse locally?

I need to install the Eclipse JDT.Core plugin locally (for example, upload a file using site.xml, etc.), and not install it remotely due to a terrible firewall at work. Can anyone suggest where to download it so that I can perform a local installation? Thanks

+4
source share
4 answers

I'm not sure I have ever seen a jdt.core installation, as it is included in most eclipse distributions ( Eclipse 3.5 Galileo or Eclipse 3.6 Helios )

As the saying goes, the jdt core update site is part of the global Eclipse update sites , and I donโ€™t think you can easily download only the jdt.core part.

The easiest way is to download the full distribution with JDT already included.

+2
source

I assume that you are using Aptana, well, as VonC said I donโ€™t know if there is a link to the JDT website, but I personally did something else that worked for me.

on eclipse or aptana

  • Go to "Help", then go to "Install new software", and the installation dialog box will appear.
  • Click the "Available software sites" link in the installation dialog.
  • Check or copy the Eclipse Helios update site http://download.eclipse.org/releases/helios Enabled "or just skip step 2 and copy and paste this link" http://download.eclipse.org/releases/helios "
  • Add it and it will provide you with a list of software products, go to "Programming Languages" and select "Java Eclipse Development Tool".

Hope this works for you.

+9
source

Go to Help> Installing New Software and add http://download.eclipse.org/releases/[your release, for example. indigo]

In the Programming Languages โ€‹โ€‹section, select Java Eclipse Development Tools.

Worked for me

+1
source

Find jdt jar from the following location.

http://www.findjar.com/jar/eclipse/jars/jdtcore-3.0.1.jar.html

Just add this to your project library.

Enjoy !!!!

0
source

Source: https://habr.com/ru/post/1305636/


All Articles