I want a jar file for the project https://github.com/klout/brickhouse
but I don\'t see any link on the site which gives me jar file. There is a link on right menu t
A little late in responding, but Brickhouse has a separate Downloads page in the wiki
https://github.com/klout/brickhouse/wiki/Downloads
Also, if you are using maven or ivy, it should be available in the sonatype public repo. http://central.maven.org/maven2/com/klout/brickhouse/
If you are using maven to build a jar assembly, add the following lines in your pom.xml
<dependency>
<groupId>com.klout</groupId>
<artifactId>brickhouse</artifactId>
<version>0.5.5</version>
</dependency>
There's a Getting Started section in the project's README that shows the steps to follow to do just that. I just tried them and they work just fine:
$ git clone http://github.com/klout/brickhouse
$ cd brickhouse
$ mvn package
$ cd target
$ dir
That's it! You have to have Maven installed of course.