webmetrics / browsermob-proxy

NOTICE: this project has been forked and is being maintained at https://github.com/lightbody/browsermob-proxy
https://github.com/lightbody/browsermob-proxy
Apache License 2.0
234 stars 773 forks source link

cant' find bin/browsermob-proxy #9

Closed andytriboletti closed 13 years ago

andytriboletti commented 13 years ago

I ran mvn install and see it created a target folder. I don't see a bin folder. I tried java -jar browsermob-proxy-2.0-beta-3-SNAPSHOT.jar

and got this error

Failed to load Main-Class manifest attribute from browsermob-proxy-2.0-beta-3-SNAPSHOT.jar

lightbody commented 13 years ago

That's because the jar itself isn't enough to run it from the command line. Try this:

mvn -Prelease install

Then look for browsermob-proxy-2.0-beta-3-SNAPSHOT-bin.zip in the target directory and unpack it. In there you'll find the bin directory :)

andytriboletti commented 13 years ago

thanks