0.8 build problems

2013-02-21 Thread David Arthur
I'm having trouble building the project with sbt, specifically I am unable to run package and have the kafka-server-start.sh script work git clone git://github.com/apache/kafka.git ./sbt update ./sbt "++2.8.0 package" ./bin/kafka-server-start.sh config/server.properties Exception in thread "mai

Re: 0.8 build problems

2013-02-21 Thread Derek Chen-Becker
The two simplest approaches (short of parsing SBT output for classpaths) would be to either use https://github.com/n8han/conscript or https://github.com/sbt/sbt-assembly. Assembly would give you a nice, self-contained JAR with all deps. Conscript essentially uses SBT to fetch deps and run. I'm more

Re: 0.8 build problems

2013-02-21 Thread Swapnil Ghike
Hi Derek, We probably have a patch for adding assembly at https://issues.apache.org/jira/browse/KAFKA-733. Can you review it? Thanks, Swapnil On 2/21/13 2:46 PM, "Derek Chen-Becker" wrote: >The two simplest approaches (short of parsing SBT output for classpaths) >would be to either use https:/

Re: 0.8 build problems

2013-02-21 Thread Derek Chen-Becker
Reviewed. I added my comments on the ticket. Thanks! On Thu, Feb 21, 2013 at 5:03 PM, Swapnil Ghike wrote: > Hi Derek, > > We probably have a patch for adding assembly at > https://issues.apache.org/jira/browse/KAFKA-733. Can you review it? > > Thanks, > Swapnil > > On 2/21/13 2:46 PM, "Derek C

Re: 0.8 build problems

2013-03-28 Thread David Arthur
Turns out I needed to remove ~/.sbt Not sure why, or what that means, but it's working now -David On 2/21/13 8:05 PM, Derek Chen-Becker wrote: Reviewed. I added my comments on the ticket. Thanks! On Thu, Feb 21, 2013 at 5:03 PM, Swapnil Ghike wrote: Hi Derek, We probably have a patch for