Slashdot Mirror


Eclipse Foundation Celebrates 10 Years

msmoriarty writes with news that the Eclipse foundation is ten years old this week. Although Eclipse was released in 2001, development was controlled by IBM until the creation of the independent Eclipse Foundation in 2004. "According to Eclipse Foundation Director Mike Milinkovich, that's a major reason Eclipse was able to thrive: 'IBM....did an exemplary job of setting Eclipse free ... We became the first open source organization to show that real competitors could collaborate successfully within the community.' He also talks about misconceptions about Eclipse, its current open source success, and what he sees for the future."

16 of 155 comments (clear)

  1. Still using it by hansamurai · · Score: 4, Interesting

    Even though I've owned a copy of IntelliJ IDEA for over a year, I still use Eclipse everyday for Java development. Latest version is great and the extensions available for it make it even better.

    1. Re:Still using it by Volguus+Zildrohar · · Score: 3, Funny

      AUTO 100, 10

      Suddenly GW-Basic is rivalling Eclipse as an IDE!

      --
      When confronted with one problem, some think "I'll use recursion". Now they are confronted with one problem.
  2. Worked with it for months - still prefer Netbeans by mark-t · · Score: 4, Insightful

    I always found Eclipse to be very fidgety, and I've only ever been able to get one non-java project debugging properly inside of it. Conversely, netbeans ... well.. it just works. It has full C++11 support these days, and is, in my opinion, much friendlier to pure java development, using ant as its native build tool.

    (My money's on this comment being modded down by eclipse fanboys, ah, but what the hell, I'll post it anyways.)

  3. Giant contribution by bug_hunter · · Score: 3, Interesting

    Eclipse and Java make a bit of a unique pair. Java is massively verbose by today's standards, but it's strict typing and highly declarative approach allows your IDE to do amazing things when it comes to refactoring or code analysis. Then there's the fact that Eclipse is by no means just a Java IDE, but that's just part of its giant eco-system.

    Eclipse is one of the reasons I was super sad that Oracle bought Java instead of IBM. IBM at least proved they can make a good product using Java, using its strengths and subverting its weaknesses.

    --
    It's turtles all the way down.
    1. Re: Giant contribution by hibiki_r · · Score: 3, Interesting

      Depending on the kind of development you are on, maybe. There's plenty of people moving to shinier things though, mainly due to Java's excessive verbosity and lack of support of functional features. For insance, you see Fortune 500 companies placing ads for Scala developers. And people don't move to Scala because they have nostalgia for the C++ era's compile times. There's plenty of growth out there by other second tier languages who people choose to increase speed of development. And there's of course C#, which actually attempts to evolve at a decent rate.

      So while Java is still a very used language in industry, you won't see any language getting any uptake today if they replicate Java's love for boilerplate.

      We could also talk about the tools that are often used with Java that just promote the mindless verbosity. We all remember how terrible EJB 1.0 and 2.0 were. But then we got Spring and Hibernate, which are only slightly better than the disease. You can choose between monstruous XML formats with no real type checking, leading to a whole lot of runtime errors, or annotations that are slightly less verbose, and yet are just as prone to runtime errors. You end up needing such high test coverage to double check for those 'helpful' technologies that you might as well have been using a purely dynamic language in the first place: It's not as if the compiler protects you from careless mistakes in annotations or XML files. To offset this, we need an IDE and some complex configuration, raising the bar for building even the simplest application. No wonder people found Rails so refreshing when it first came out.

  4. For the haters by ADRA · · Score: 4, Interesting

    I've been using Eclipse on for pretty much 10years now and by and large, the tool has been pretty darn soliod. its a memory pig so get over it. I throw 1.5G at the heap and though it rarely if ever gets close to it, the amout of speed it performs mosdt operations is amazing.

    There are warts which I find personally lousy (like Mylyn of the built-in profiler, and much of the built-in text validators), but thankfully most of those can be trivially turned off and tweaked to speed up usage even more. With a few choice plug-ins, you can do a lot of the hard lifting without effort.

    I've only had cursory usage of Netbeans/Idea, but Kepler is really a dream to use. Note, almost every first few months of a new release are generally ass, and Juno was entirely ass so be warned. Just because one version of Eclipse may be a flake, don't discount the platform.

    --
    Bye!
  5. and yet... by buddyglass · · Score: 3, Interesting

    ...I'm still running 3.7 because the 4.x releases are (by all accounts) still not "fixed". Sigh.

  6. 10 years... by Anonymous Coward · · Score: 5, Funny

    ...and I'm still waiting for it to load!

  7. The modern emacs by oldhack · · Score: 3, Interesting

    Eclipse has become a universe onto itself. It's got its own GUI kit, thread model, all kinds of stuff I'm too drunk to name at this moment.

    --
    Fuck systemd. Fuck Redhat. Fuck Soylent, too. Wait, scratch the last one.
    1. Re:The modern emacs by Anonymous Coward · · Score: 4, Funny

      except you can use emacs to do things

  8. OSGi by emorning · · Score: 4, Informative

    One of the most awesome things that the Eclipse people did was switch to a foundation built on OSGi after the first version. Eclipse is a showcase that showcase the power of a modular component framework.
    Sun really screwed up by failing to adopt OSGi for Java's module system.

    When I think of the best technologies available to the average Java developer like myself I rank the JVM first and OSGi second.

    With setup boxes now set to become ubiquitous, I want a box that integrates some OSGi-like framework that will enable me to integrate all the devices in my house.

  9. Re:Java by 0123456 · · Score: 4, Insightful

    Have you ever looked at the code behind eclipse? It's terrifying!

    No, I haven't. But I'll concede that anyone who can write bad code in Java can write much worse code in C++.

  10. Re:Java by Anrego · · Score: 4, Informative

    From the limited time I've spent in eclipse's code, it seems a case of poorly done decoupling. It's layers upon layers of abstraction that's expected to just kinda sort itself out, which of course it doesn't and things end up in loops until the operation either times out, fails, or something changes that lets it get out of the loop and maybe even finish.

    Clicking the cancel button is optimistic at best, especially when it's in one of it's death patterns. It just really seems to do a poor job of operation management in my opinion. When eclipse seems to be "taking forever", chances are it's two operation tasks bouncing back and forth waiting on each other, and not actually slow processing.

    That said, I still love eclipse for Java development. Once you learn the do's and don'ts (and which files to delete when eclipse has a melt down), it's pretty usable.

  11. Re:Is there a memory leak or is it just Flashbuild by H0p313ss · · Score: 3, Insightful

    Have you adjusted the heap memory settings in eclipse.ini?

    Here's the guide I wrote for using the IBM JVM for RSA and RTC, Oracle/JVM settings are similar.

    --
    XML is a known as a key material required to create SMD: Software of Mass Destruction
  12. Re:Is there a memory leak or is it just Flashbuild by ebno-10db · · Score: 3

    Thank you for that link, as it's probably quite useful.

    However, addressing Eclipse rather than you, I've never used any other IDE that required a user adjustment in heap memory settings. There's something wrong with that.

  13. Re:Java by Xest · · Score: 3, Informative

    On the desktop? Minecraft? Azureus? IntelliJ IDEA? OpenOffice? NetBeans? SoapUI?

    If you're looking for substantially more complexity than these sorts of things though then there aren't really any desktop examples that come to mind. It's all server side stuff.