Eclipse_(software)

Eclipse (software)

Eclipse (software)

Software development environment


Eclipse is an integrated development environment (IDE) used in computer programming.[5] It contains a base workspace and an extensible plug-in system for customizing the environment. It is the second-most-popular IDE for Java development, and, until 2016, was the most popular.[6] Eclipse is written mostly in Java and its primary use is for developing Java applications,[7] but it may also be used to develop applications in other programming languages via plug-ins, including Ada, ABAP, C, C++, C#, Clojure, COBOL, D, Erlang, Fortran, Groovy, Haskell, JavaScript, Julia,[8] Lasso, Lua, NATURAL, Perl, PHP, Prolog, Python, R, Ruby (including Ruby on Rails framework), Rust, Scala, and Scheme. It can also be used to develop documents with LaTeX (via a TeXlipse plug-in) and packages for the software Mathematica. Development environments include the Eclipse Java development tools (JDT) for Java and Scala, Eclipse CDT for C/C++, and Eclipse PDT for PHP, among others.[9]

Quick Facts Original author(s), Developer(s) ...

The initial codebase originated from IBM VisualAge.[10] The Eclipse software development kit (SDK), which includes the Java development tools, is meant for Java developers. Users can extend its abilities by installing plug-ins written for the Eclipse Platform, such as development toolkits for other programming languages, and can write and contribute their own plug-ins. Since Eclipse 3.0 (released in 2004), plug-ins are installed and managed as "bundles" using Equinox, an implementation of OSGi.[11]

The Eclipse SDK is free and open-source software, released under the terms of the Eclipse Public License, although it is incompatible with the GNU General Public License.[12] It was one of the first IDEs to run under GNU Classpath and it runs without problems under IcedTea.

History

Eclipse was inspired by the Smalltalk-based VisualAge family of integrated development environment (IDE) products.[10] Although fairly successful, a major drawback of the VisualAge products was that developed code was not in a component-based software engineering model. Instead, all code for a project was held in a compressed database using SCID techniques (somewhat like a zip file but in .dat). Individual classes could not be easily accessed, certainly not outside the tool. A team primarily at the IBM Cary, NC lab developed the new product as a Java-based replacement.[13][failed verification] In November 2001, a consortium was formed with a board of stewards to further the development of Eclipse as open-source software. It is estimated that IBM had already invested nearly $40 million by that time.[14] The original members were Borland, IBM, Merant, QNX Software Systems, Rational Software, Red Hat, SuSE, TogetherSoft, and WebGain.[15] The number of stewards increased to over 80 by the end of 2003. In January 2004, the Eclipse Foundation was created.[16]

Eclipse 3.0 (released on 21 June 2004) selected the OSGi Service Platform specifications as the runtime architecture.[17]

The Association for Computing Machinery recognized Eclipse with the 2011 ACM Software System Award on 26 April 2012.[18]

Licensing

The Eclipse Public License (EPL) is the fundamental license under which Eclipse projects are released.[19] Some projects require dual licensing, for which the Eclipse Distribution License (EDL) is available, although use of this license must be applied for and is considered on a case-by-case basis.

Eclipse was originally released under the Common Public License, but was later re-licensed under the Eclipse Public License. The Free Software Foundation has said that both licenses are free software licenses, but are incompatible with the GNU General Public License (GPL).[20]

Name

According to Lee Nackman, Chief Technology Officer of IBM's Rational division (originating in 2003) at that time, the name "Eclipse" (dating from at least 2001) was not a wordplay on Sun Microsystems, as the product's primary competition at the time of naming was Microsoft Visual Studio, which Eclipse was to eclipse.[21]

Different versions of Eclipse have been given different science-related names. The versions named after Callisto, Europa, and Ganymede, which are moons of Jupiter, were followed by a version named after Galileo, the discoverer of those moons. These were followed by two sun-themed names, Helios of Greek mythology, and Indigo, one of the seven colors of a rainbow (which is produced by the sun). The version after that, Juno, has a triple meaning: a Roman mythological figure, an asteroid, and a spacecraft to Jupiter.[22] Kepler, Luna, and Mars continued the astronomy theme, and then Neon and Oxygen constituted a theme of chemical elements. Photon represented a return to sun-themed names.

As of 2018, the alphabetic scheme was abandoned in order to better align with the new Simultaneous Release strategy.[23] Releases are named in the format YYYY-MM to reflect the quarterly releases, starting with version 4.9 named 2018-09.[24]

Releases

Since 2006, the Foundation has coordinated an annual Simultaneous Release.[25] Each release includes the Eclipse Platform and several other Eclipse projects.

From 2008 through 2018, each Simultaneous Release had occurred on the 4th Wednesday of June. In 2018 the project switched to quarterly (13 week) YYYY-MM releases without intermediate service releases.[26]

More information Version name, Date ...
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release
  1. There is a 3.8 release of Eclipse Juno; it is not promoted on the main downloads page, but a packaged distribution is available for download.[42] Eclipse 3.8 provides bugfixes for Indigo & adds Java 7 support, and its maintenance was dual streamed with 4.2.[43] Features and plug-ins equivalent to a packaged distribution may be added from within the IDE.

Architecture

Eclipse uses plug-ins to provide all the functionality within and on top of the run-time system. Its run-time system is based on Equinox, an implementation of the OSGi core framework specification.[80]

In addition to allowing the Eclipse Platform to be extended using other programming languages, such as C and Python, the plug-in framework allows the Eclipse Platform to work with typesetting languages like LaTeX[81] and networking applications such as telnet and database management systems. The plug-in architecture supports writing any desired extension to the environment, such as for configuration management. Java and CVS support is provided in the Eclipse SDK, with support for other version control systems provided by third-party plug-ins.

With the exception of a small run-time kernel, everything in Eclipse is a plug-in. Thus, every plug-in developed integrates with Eclipse in the same way as other plug-ins; in this respect, all features are "created equal".[82] Eclipse provides plug-ins for a wide variety of features, some of which are from third parties using both free and commercial models. Examples of plug-ins include for Unified Modeling Language (UML), for Sequence and other UML diagrams, a plug-in for DB Explorer, and many more.

The Eclipse SDK includes the Eclipse Java development tools (JDT), offering an IDE with a built-in Java incremental compiler and a full model of the Java source files. This allows for advanced refactoring techniques and code analysis. The IDE also makes use of a workspace, in this case a set of metadata over a flat filespace allowing external file modifications as long as the corresponding workspace resource is refreshed afterward.

Eclipse implements the graphical control elements of the Java toolkit called Standard Widget Toolkit (SWT), whereas most Java applications use the Java standard Abstract Window Toolkit (AWT), Swing, or JavaFX. Eclipse's user interface also uses an intermediate graphical user interface layer called JFace, which simplifies the construction of applications based on SWT. Eclipse was made to run on Wayland during a Google Summer of Code (GSoC) Project in 2014.[83]

As of 2017, language packs being developed by the Babel Project provide translations into over 40 natural languages.[4]

Rich client platform

Eclipse provides the rich client platform (RCP) for developing general-purpose applications.

The following components constitute the rich client platform:

Examples of rich client applications based on Eclipse are:

Server platform

Eclipse supports development for Tomcat, GlassFish and many other servers and is often capable of installing the required server (for development) directly from the IDE. It supports remote debugging, allowing a user to watch variables and step through the code of an application that is running on the attached server.

Web Tools Platform

The Eclipse Web Tools Platform (WTP) project is an extension of the Eclipse platform with tools for developing Web and Java EE applications. It includes source and graphical editors for a variety of languages, wizards and built-in applications to simplify development, and tools and APIs to support deploying, running, and testing apps.[85]

Modeling platform

The Modeling project contains all the official projects of the Eclipse Foundation focusing on model-based development technologies. All are compatible with the Eclipse Modeling Framework created by IBM. Those projects are separated in several categories: Model Transformation, Model Development Tools, Concrete Syntax Development, Abstract Syntax Development, Technology and Research, and Amalgam.

Model Transformation projects uses Eclipse Modeling Framework (EMF) based models as an input and produce either a model or text as an output. Model to model transformation projects includes ATLAS Transformation Language (ATL), an open source transformation language and toolkit used to transform a given model or to generate a new model from a given EMF model. Model to text transformation projects contains Acceleo, an implementation of MOFM2T, a standard model to text language from the Object Management Group (OMG). The Acceleo code generator can generate any textual language (Java, PHP, Python, etc.) from EMF based models defined with any metamodel (Unified Modeling Language (UML), Systems Modeling Language (SysML), etc.). It is open-source.

Model Development Tools projects are implementations of various modeling standards used in the industry, and their toolkits. Among those projects can be found implementations of several standards:

The Concrete Syntax Development project contains the Graphical Modeling Framework, an Eclipse-based framework dedicated to the graphical representation of EMF based models.[citation needed]

The Abstract Syntax Development project hosts the Eclipse Modeling Framework, core of most of the modeling project of the Eclipse Foundation and the framework available for EMF like Connected Data Objects (CDO), EMF query or EMF validation.

Technology and Research projects are prototypes of Modeling project; this project is used to host all the modeling projects of the Eclipse Foundation during their incubation phase.[citation needed]

Amalgam provides the packaging and integration between all the available modeling tools for the Eclipse package dedicated to modeling tools.[86]

Application lifecycle management

Application lifecycle management (ALM) and task management in Eclipse need an optional component called Mylyn (/ˈmlɪn/), an open-source implementation of the task-focused interface. It provides an API for tools embedding the task-focused interface. For software developers, it helps a developer work efficiently with many different tasks (such as bugs, problem reports or new features). Tasks are integrated into Mylyn. For all tasks that have been integrated, Mylyn monitors user activity and tries to identify information relevant to the task at hand. It uses this task context to focus the Eclipse UI on the related information. Mylyn can integrate with repositories such as Bugzilla, Trac, Redmine, Mantis,[87] JIRA, Unfuddle,[88] and GitHub.[89] It focuses on improving productivity by reducing searching, scrolling, and navigation. By making task context explicit, Mylyn is also meant to facilitate multitasking, planning, reusing past efforts, and sharing expertise.

The project name comes from myelin, an electrically insulating layer that surrounds neurons' axons.[90] The original name of this project, "Mylar", replicated a trademark of a boPET film company, so the Eclipse Foundation changed the project name.[91]

Features

Eclipse IDE features include text editor with syntax coloring, coding assistance, code completion, code refactoring, code analysis with "Quick fix" suggestions along with code debugging.[92]

Along with native support for OSGi, JPMS support has been added as of Java 9.[92]

Extensions

Eclipse supports a rich selection of extensions, adding support for Python via PyDev, Android development via Google's ADT (superseded by Android Studio since 2015), JavaFX via e(fx)clipse, JavaScript, jQuery, and many others at the Eclipse Marketplace. Valable is a Vala plug-in for Eclipse.[93]

In addition to the built in Java compiler warnings, additional plug-ins are available for linting to improve code quality and consistency such as SpotBugs and Sonar.[94][95]

Support for build tools such as Ant, Maven, Make, and CMake includes the capability to replace Eclipse native project file format with Maven pom.xml directly.[96]

Alternative distributions

Several alternative distributions exist in the Eclipse project.

PHP Development Tools

The PHP Hypertext Preprocessor (PHP) Development Tools project provides a framework for the Eclipse platform. The project encompasses all development components, including code-completion, develop PHP and facilitate extensibility. It leverages the existing Eclipse Web Tools Platform (WTP) and Dynamic Languages Toolkit (DLTK).[97]

Android Development Tools

Android Development Tools (ADT) was superseded in 2015 by the Eclipse foundation's own plugin, called Andmore: Development Tools for Android,[98] after Google discontinued development of their plug-in for the Eclipse IDE, that is designed to provide an integrated environment in which to build Android applications. ADT/Andmore extends the abilities of Eclipse to let developers set up new Android projects, create an application UI, add packages based on the Android Framework API, debug their applications using the Android SDK tools, and export signed (or unsigned) .apk files in order to distribute their applications. It is freely available to download. Googles' ADT was the official IDE for Android until 2015 but was replaced by Eclipse's Andmore and the official Android Studio.[99][100]

See also


References

  1. "Eclipse.org consortium". The Community for Open Innovation and Collaboration | The Eclipse Foundation. Retrieved 10 September 2022.
  2. Ed Merks (22 October 2023). "Eclipse Project 4.30.0". Retrieved 22 December 2023.
  3. "Equinox/dev - Eclipsepedia". wiki.eclipse.org. Retrieved 26 August 2023.
  4. "Babel Project – Eclipse translation". Eclipse. The Eclipse Foundation. 31 January 2013. Retrieved 5 March 2017.
  5. "Eclipse desktop & web IDEs". The Eclipse Foundation. Retrieved 29 January 2022.
  6. "GitHub - JuliaComputing/JuliaDT: Julia Development Toolkit for Eclipse". github.com. 10 October 2018. Retrieved 28 December 2018 via GitHub.
  7. "Where did Eclipse come from?". Eclipse Wiki. Retrieved 16 March 2008.
  8. "500 lines or less: Eclipse" says "With the switch to OSGi, Eclipse plugins became known as bundles"
  9. Free Software Foundation, Inc. (5 November 2012). "Various Licenses and Comments About Them".
  10. Rick DeNatale (15 October 2008). "Will It Go Round in Circles?". Archived from the original on 19 October 2008.
  11. Milinkovich, Mike. "IBM and Eclipse: A Decade of Software Innovation". Building a Smarter Planet. Archived from the original on 30 January 2012. Retrieved 3 November 2011.
  12. "About the Eclipse Foundation: History of Eclipse". Eclipse. Retrieved 1 January 2014.
  13. "About the Eclipse Foundation". The Eclipse Foundation. Retrieved 13 August 2008.
  14. "OSGi – the footings of the foundation of the platform". The Eclipse Foundation. Archived from the original on 13 June 2008. Retrieved 25 June 2008.
  15. "ACM Honors Computing Innovators for Advances in Research, Education, and Industry". Association for Computing Machinery. Archived from the original on 29 April 2012. Retrieved 26 April 2012.
  16. "Eclipse Public License". Retrieved 24 February 2012.
  17. "Various Licenses and Comments about Them". Free Software Foundation. 17 May 2007. Retrieved 20 May 2007.
  18. Darryl K. Taft (20 May 2005). "Eclipse: Behind the Name". eWeek.com. Ziff Davis Enterprise Holdings. Retrieved 11 August 2008.
  19. Sharma, Ankur (14 February 2011). "Naming Indigo +1". Eclipse. Retrieved 4 July 2016.
  20. "Simultaneous Release FAQ". Eclipse. 9 March 2018. Retrieved 2 March 2019.
  21. "Simultaneous Release". Retrieved 12 January 2018.
  22. "Eclipse Tools Project". archive.eclipse.org. Retrieved 10 September 2022.
  23. "Eclipse.org consortium". The Community for Open Innovation and Collaboration | The Eclipse Foundation. Retrieved 10 September 2022.
  24. "Eclipse.org consortium". The Community for Open Innovation and Collaboration | The Eclipse Foundation. Retrieved 10 September 2022.
  25. "Eclipse Tools Project". archive.eclipse.org. Retrieved 10 September 2022.
  26. "Eclipse Foundation". Eclipse.org. 21 June 2004. Retrieved 12 January 2018.
  27. "Eclipse Tools Project". archive.eclipse.org. Retrieved 10 September 2022.
  28. "Eclipse 3.1 Inside!". Retrieved 12 January 2018.
  29. "Eclipse IDE Simultaneous Release (SimRel)". GitHub. Eclipse Foundation. 6 December 2023. Retrieved 22 December 2023.
  30. "Eclipse Callisto Projects". Eclipse. Retrieved 12 January 2018.
  31. "Ganymede Simultaneous Release". wiki.eclipse.org. Retrieved 12 January 2018.
  32. "Galileo Simultaneous Release". wiki.eclipse.org. Retrieved 12 January 2018.
  33. "Category:Helios". wiki.eclipse.org. Retrieved 12 January 2018.
  34. "Category:Indigo". wiki.eclipse.org. Retrieved 12 January 2018.
  35. "Help - Eclipse Platform". help.eclipse.org. Retrieved 12 January 2018.
  36. "Eclipse Juno Release Train Has Arrived". Eclipse. 27 June 2012. Retrieved 12 January 2018.
  37. "Eclipse 3.8.2 Maintenance Build: 3.8.2". archive.eclipse.org. 31 January 2013. Retrieved 12 January 2018.
  38. "389175 – Dual stream simultaneous release (3.x and 4.x)". bugs.eclipse.org. Retrieved 28 December 2018.
  39. "Category:Juno". wiki.eclipse.org. Retrieved 12 January 2018.
  40. "Category:Kepler". wiki.eclipse.org. Retrieved 12 January 2018.
  41. "Eclipse/Installation - Eclipsepedia". wiki.eclipse.org. Retrieved 10 September 2022.
  42. "Category:Luna". Wiki.eclipse.org. Retrieved 12 January 2018.
  43. "Eclipse Project 4.4.0". 22 July 2013. Retrieved 12 January 2018.
  44. "Category:Mars". Wiki.eclipse.org. Retrieved 12 January 2018.
  45. "Category:Neon". wiki.eclipse.org. Retrieved 12 January 2018.
  46. "Category:Oxygen". wiki.eclipse.org. Retrieved 12 January 2018.
  47. "Category:Photon". wiki.eclipse.org. Retrieved 12 January 2018.
  48. "OSGi Certified Products". OSGi Alliance Site. Retrieved 2 August 2016.[permanent dead link]
  49. "TeXlipse homepage – LaTeX for Eclipse". TeXlipse.sourceforge.net. Retrieved 1 January 2014.
  50. Gallardo, David (1 December 2002). "Developing Eclipse plug-ins". IBM. Retrieved 5 February 2018.
  51. "Eclipse now runs on Wayland". 18 August 2014. Archived from the original on 23 August 2014. Retrieved 17 September 2014.
  52. "Portfolio Performance". Portfolio Performance. Retrieved 16 December 2020.
  53. "Eclipse Web Tools Platform Project". Eclipse.org. Retrieved 2 May 2011. The Eclipse Web Tools Platform (WTP) project extends the Eclipse platform with tools for developing Web and Java EE applications. It includes source and graphical editors for a variety of languages, wizards and built-in applications to simplify development, tools to support deploying, running, and testing apps, and APIs for extending its functionality.
  54. (in English) "Amalgation website". 31 January 2013. Retrieved 5 March 2015.
  55. "Mylyn MantisBT Connector". Mantis Bug Tracker. Archived from the original on 25 December 2012. Retrieved 25 October 2011.
  56. "Unfuddle Mylyn Connector". Unfuddle. Retrieved 21 May 2011.
  57. "GitHub Mylyn connector for Eclipse". GitHub. 10 May 2011. Retrieved 12 May 2011.
  58. "Eclipse Help". Eclipse. Retrieved 20 November 2023.
  59. "valable in Launchpad". launchpad.net. 24 December 2007. Retrieved 28 December 2018.
  60. "Eclipse Marketplace". Eclipse Marketplace. Eclipse. Retrieved 20 November 2023.
  61. "SonarLint Documentation". Sonar. Retrieved 20 November 2023.
  62. "Converting Eclipse Java Project to Maven Project". Eclipseipedia. Eclipse. Retrieved 20 November 2023.
  63. "PHP Development Tools". projects.eclipse.org. 31 January 2013. Retrieved 1 January 2014.
  64. "Andmore: Development Tools for Android". Eclipse Plugins, Bundles and Products - Eclipse Marketplace. Retrieved 11 November 2019.
  65. Eason, Jamal (26 June 2015). "An update on Eclipse Android Developer Tools". android-developers.googleblog.com. Retrieved 25 March 2017.

Sources


Share this article:

This article uses material from the Wikipedia article Eclipse_(software), and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.