How to Create a jar file from github project

后端 未结 2 748
日久生厌
日久生厌 2021-02-06 03:27

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

2条回答
  •  醉酒成梦
    2021-02-06 04:22

    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.

提交回复
热议问题