Hey,
I wanted to build elasticsearch under eclipse. I took a stab at it,
and got things down to three errors that seemed inconsequential. What
would be the equivalent of bin/elasticsearch -f in an eclipse
debuggable context?
Cheers,
Alex
FWIW, here's what I did to mostly please eclipse:
Downloaded google guice 2.0 from
http://code.google.com/p/google-guice/wiki/Guice20
Downloaded jLine from
http://sourceforge.net/projects/jline/files/jline/0.9.5/jline-0_9_5.jar/download
Downloaded Jackson from(need optional mapper package too)
http://wiki.fasterxml.com/JacksonDownload
Downloaded google collections from
http://code.google.com/p/google-collections/downloads/list:w
Got sick of this, decided to try:
http://gradle.codehaus.org/Cookbook#Cookbook-Gatheringalldependencies(libs)inonefolder
Had to modify the solution a bit, and manually create build/output/
lib
modified solution:
task copyToLib(dependsOn: configurations.dists.buildArtifacts,
type: Copy) {
into('lib')
from configurations.dists
from configurations.dists.allArtifacts*.file
from configurations.distLib
from configurations.distLib.allArtifacts*.file
}
This appears to have gotten a lot of stuff, but looks to have
missed testng
among others?
hamcrest http://code.google.com/p/hamcrest/downloads/detail?name=hamcrest-core-1.1.jar&can=2&q=
testng http://testng.org/doc/download.html
That takes care of everything except
Description Resource Path Location Type
Duplicate methods named indexedValue with the parameters (T) and
(String) are defined by the type FieldMapper
IdFieldMapper.java /elasticsearch-elasticsearch-38edf96/modules/
elasticsearch/src/main/java/org/elasticsearch/index/mapper line 27
Java Problem
which seems to not matter a whit.