Mostrando entradas con la etiqueta Eclipse. Mostrar todas las entradas
Mostrando entradas con la etiqueta Eclipse. Mostrar todas las entradas

sábado, 24 de noviembre de 2012

Java: Configure Eclipse

Configure Eclipse



# Install Aptana Studio for Web Developers into Eclipse

Open Eclipse and go to Help -> Install New Software and paste the URL (http://download.aptana.com/studio3/plugin/install)
Now, few more Next Next ..


# Install Helios

1- Help->Software Updates->Find and Install.
2- Install/Update con 2 opciones. Seleccionamos la opción Search for new features to install.
Select Helios: http://download.eclipse.org/releases/helios
and installit...

# Install Subclipse (Subversion client) in Eclipse (if is necesary)

1- Help->Software Updates->Find and Install.
2- Install/Update con 2 opciones. Seleccionamos la opción Search for new features to install.
3- Introduciremos un nuevo sitio, pulsa sobre el boton New Remote Site.
4- Nombre y URL del nuevo lugar de búsqueda introducimos alguna de las siguientes opciones:

Subclipse Links for 1.8.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.8.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.8.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Subclipse Links for 1.6.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.6.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.6.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Subclipse Links for 1.4.x Release:
Changelog: http://subclipse.tigris.org/subclipse_1.4.x/changes.html
Eclipse update site URL: http://subclipse.tigris.org/update_1.4.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
...see more...http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA

5- Finalmente pulsamos sobre Ok nos aparecerá el repositorio Subversive lo marcamo.
6- Aceptamos la licencia y Finish


References:
- Instrucciones para instalar subversion
- Subclipse: plugin de Subversion para Eclipse.
- Configurar plugin subversion en eclipse (subclipse).

Java: Install Eclipse on Ubuntu 12.04

Forma estándar de instalar Eclipse en Ubuntu

Precondición: Debemos tener instalado java.

# Remover Eclipse si esta Instalado previamente
#----------------------------------------------------------------------------------------------------

# Install Eclipse Platform    (standard form)
#----------------------------------------------------------------------------------------------------

sudo apt-get install eclipse-platform

# Extras:
# Install JDT for Java Development If you want
sudo apt-get install eclipse-jdt

# Install CDT for C/C++ Development If you want
sudo apt-get install eclipse-cdt

#Launch Eclipse Platform
eclipse

# If an error similar to the following:
# An error has occurred. See the log file /home/username/.eclipse/org.eclipse.platform_3.7.0_155965261/configuration/1353802599085.log.
# Then do following:
ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86/
#And on Ubuntu 12.04 64 bit try:
ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86_64/

# The Result folder Structure on Linux system is following:
#      /usr/bin/eclipse #sh
#      /usr/share/eclipse
#      /usr/lib/eclipse
#      /home/username/.eclipse/
#      /home/username/.config/eclipse/
#      /etc/eclipse.ini


Instalando desde un zip en Ubuntu


Primero nos aseguramos de si nuestro sistema es 32bits o 64bits para saber que copia bajar de Eclipse:

uname -a

Luego bajamos una copia en un zip:

Eclipse Luna: https://www.eclipse.org/downloads/


Descomprimimos en nuestro "home" y editamos el archivo "eclipse.desktop" que va a funcionar como acceso directo que lanza la aplicación (ver: http://difusal.blogspot.com.ar/2014/07/how-to-install-eclipse-luna-44-on-ubuntu.html).




References:
- How to Install Eclipse IDE on Ubuntu 12.04
- Instalando Eclipse Indigo en Ubuntu (u otro Linux)
- Eclipse 4.2 (JUNO) in Ubuntu 12.04.

- Youtube: Install Java and Eclipse IDE into Ubuntu Desktop 12.04.
- Youtube: Como instalar Eclipse Indigo en Ubuntu 10.04.

- How to install Eclipse in folder independent? 

Eclipse Luna:
https://www.eclipse.org/downloads/
http://ubuntuhandbook.org/index.php/2014/06/install-latest-eclipse-ubuntu-14-04/
http://difusal.blogspot.com.ar/2014/07/how-to-install-eclipse-luna-44-on-ubuntu.html

Java: Remove Eclipse from Ubuntu

# Remover Eclipse from Ubuntu 12.04
#----------------------------------------------------------------------------------------------------

sudo apt-get remove --purge eclipse
sudo apt-get autoremove eclipse
sudo rm -r /usr/lib/eclipse

#Remove files from yout home (example username user)
cd /home/username
sudo rm -r ~/.eclipse/
sudo rm -r ~/.config/eclipse/

Nota: In graphical environment go tu Ubuntu Software Center and remove it.