Package Details: eclim 2.21.0-1

Git Clone URL: https://aur.archlinux.org/eclim.git (read-only, click to copy)
Package Base: eclim
Description: Brings Eclipse functionality to Vim
Upstream URL: http://eclim.org/
Keywords: eclipse java vim
Licenses: GPL3
Submitter: None
Maintainer: fungible
Last Packager: fungible
Votes: 123
Popularity: 0.000000
First Submitted: 2006-10-27 18:37 (UTC)
Last Updated: 2021-12-16 19:03 (UTC)

Dependencies (7)

Required by (0)

Sources (1)

Latest Comments

1 2 3 4 5 6 .. 19 Next › Last »

ervandew commented on 2024-10-10 22:12 (UTC) (edited on 2024-10-10 22:12 (UTC) by ervandew)

@ShinobiX9X I'm not the author/maintainer of this aur package, but I am the author of eclim, and as of Aug. of 2024 I've stopped maintenance of eclim since:

  • LSPs (Language Server Protocol) have reached the point where I don't think eclim fills the gap that once existed

  • a lot of work would be required to update or replace the tooling that eclim relies on

  • i simply don't have the free time anymore to dedicate to eclim's maintenance

So I'd recommend looking for lsp(s) to replace your eclim usage (nvim has native client support, which was a turning point for me to switch).

ShinobiX9X commented on 2024-10-10 12:22 (UTC)

Hello, I need it for jdk21. But installer says it's only for jave <= 11? Is that correct?

fungible commented on 2021-12-18 06:33 (UTC)

@rmonico1 The package was oprhaned and out of date. I've since adopted it and have rewritten the PKGBUILD. It now just requires python-sphinx for Python 3. Try re-downloading it.

rmonico1 commented on 2021-12-13 18:57 (UTC)

When try to install I get:

 -> Could not find all required packages:
    python2-freezegun (Wanted by: eclim -> python2-sphinx -> python2-babel)
    python2-snowballstemmer (Wanted by: eclim -> python2-sphinx)
    python2-sphinx-alabaster-theme (Wanted by: eclim -> python2-sphinx)

Am I doing something wrong?

These python2 packages exists just for python 3 on repository.

Thanks in advance!

petronny commented on 2021-02-22 05:20 (UTC)

Eclipse is out of the official repo now. I don't want to build it from AUR. So I'm dropping all my eclipse related packages.

FunctionalHacker commented on 2019-04-06 11:10 (UTC)

Just an fyi, this doesn't build on the latest openjdk. I only got it to build with jdk8-opendjk

petronny commented on 2019-01-28 07:28 (UTC)

@solarus Thanks! Your patch has been applied.

solarus commented on 2019-01-26 17:22 (UTC) (edited on 2019-01-26 17:30 (UTC) by solarus)

I got it working with the diff to the PKGBUILD below. Also note that the export JAVA_HOME=/usr/lib/jvm/java-8-openjdk line can be replaced with export ANT_OPTS="--add-modules java.xml.bind" if you want to build with jdk-10

@@ -36,4 +36,9 @@ prepare() {
   # ant/build.gant syntax error
   sed '68,71d' -i ant/build.gant
+
+  find -name "*.java" -exec sed -i -e 's/StubUtility2/StubUtility2Core/' \
+    -e 's/corext.codemanipulation.StubUtility;/core.manipulation.StubUtility;/' {} +
+
+  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
 }

@@ -48,5 +53,4 @@ build() {
   cd ../..

-  JAVA_HOME=/usr/lib/jvm/java-8-openjdk \
   ant -lib /usr/share/groovy/lib \
       -Declipse.home=/usr/lib/eclipse \

Sonnilon81 commented on 2019-01-23 03:18 (UTC)

This port is currently broken due to an upstream build issue with eclim when using the latest 4.10 Arch port of Eclipse:

https://github.com/ervandew/eclim/issues/601

Build fails since it cannot find StubUtility.java.

ron89 commented on 2018-11-15 06:05 (UTC) (edited on 2018-11-15 06:05 (UTC) by ron89)

The build problem is caused by the hardcoding JAVA_HOME to openjdk-8 in PKGBUILD line 50, commenting this line out solves the issue.

Note to maintainer: if openjdk-8 must be used for some reason, PATH should also include /usr/lib/jvm/java-8-openjdk/jre/bin/