Mercurial > logstash
diff logstash.Makefile @ 13:c0150404962d
start working on building from source
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 06 Apr 2013 08:48:09 -0700 |
parents | |
children | 0e45fe64b10d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/logstash.Makefile Sat Apr 06 08:48:09 2013 -0700 @@ -0,0 +1,19 @@ +all: + echo '********** in my local makefile' + + # make the graphtastic client interface class + echo '********** build with raw javac, rather than maven' + cd GT/GraphTastic; \ + javac src/main/java/com/monstersoftwarellc/graphtastic/rmi/IRmiService.java; \ + find . -name '*.class' + echo '********* done with graphtastic build' + + # make the elastic search jar + cd ES/elasticsearch-0.20.6; \ + export PATH=/usr/local/apache-maven-3.0.5/bin:$(PATH); \ + mvn -Dmaven.test.skip=true package; \ + find . -name '*.jar'; \ + find . -name '*.class' + echo '********* done with elastic search build' + + # make the logstash jar