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

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 19 Next › Last »

FordO commented on 2017-03-15 09:49 (UTC)

Error : failed to commit transaction (invalid or corrupted package)

ianks commented on 2017-01-10 17:54 (UTC) (edited on 2017-01-10 17:55 (UTC) by ianks)

I am unable to install this package: I am getting this error: init: [echo] eclim.version: 2.6.0 [echo] eclim.release: 2.6.0 [echo] eclim.release.indigo: none ------ init [exec] Running Sphinx v1.5.1 [exec] A Translator for the html builder is changed. [exec] [exec] Extension error: [exec] Could not import extension sphinx.builders.linkcheck (exception: cannot import name DependencyWarning) BUILD FAILED /tmp/makepkg/eclim/src/eclim_2.6.0/build.xml:114: The following error occurred while executing this line: /tmp/makepkg/eclim/src/eclim_2.6.0/build.xml:165: : exec returned: 1

punk0x29a commented on 2016-09-04 10:58 (UTC) (edited on 2016-09-04 11:44 (UTC) by punk0x29a)

Is there a possibility to get Scala autocompletion in Vim after all? I've seen some posts on github and other sites where people claimed that they have managed to get it up and running... The jar file downloaded from the main website installs and eclim server runs, but commands like PingEclim are not available from neither vim/neovim. This one actually "works", but it can't install with Scala features enabled. Thanks in advance for any help! EDIT: Finally got it working Step 1) Download and install official .jar installer Step 2) ln -s ~/.vim/eclim ~/.config/nvim/eclim Step 3) ln -s ~/.vim/plugin ~/.confing/nvim/plugin Step 4) launch eclimd somewhere in ~/.eclipse/org.eclipse.platform_4.6.0(...)/eclimd This gets Eclim to work with NeoVim and ScalaIDE

nunopcardoso commented on 2016-07-06 12:39 (UTC)

I had the same "java.lang.NoClassDefFoundError: groovy/lang/Script" problem and @paulolieuthier's snippet fixed the problem here. Thank you! ;)

feo.me commented on 2016-06-22 17:33 (UTC)

I think groovy must be a build dependency. I can build this package only after install it & execute magic @paulolieuthier's script. I think this script must be in prepare phase.

sleeping commented on 2016-05-25 08:35 (UTC)

@tazzerthespaz: I don't have Groovy installed and it works for me.

tazzerthespaz commented on 2016-05-24 19:38 (UTC)

I was only able to install this package after installing groovy from the community repository. This should probably be listed as a dependency.

paulolieuthier commented on 2016-05-12 12:02 (UTC)

for i in `ls /usr/share/groovy/lib/ | grep jar`; do export CLASSPATH=$CLASSPATH":/usr/share/groovy/lib/"$i; done

Eisfreak7 commented on 2016-05-03 19:26 (UTC)

I have the same problem, unfortunately @Tino's solution doesn't work for me. I don't even need groovy (although I tried installing it and adding it to the classpath, that didn't help). The same problem occurs with the eclim-git package.

m-pilia commented on 2016-05-02 17:42 (UTC) (edited on 2016-05-16 14:00 (UTC) by m-pilia)

> deviantfero commented on 2016-04-29 19:01 ... > any sugestions? It says some java class related to Groovy is missing in the CLASSPATH at runtime. This error hit me too, I solved adding Groovy's stuff to the CLASSPATH, running for i in `ls /usr/share/groovy/lib/ | grep jar`; do export CLASSPATH=$CLASSPATH":/usr/share/groovy/lib/"$i; done; just before making the eclim package. edit: forgotten export, I did it in a subsequent command