THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
IDE
Intellij Setup
Install and prepare IntelliJ
- Download and install IntelliJ
Checkout BookKeeper repo
- git clone https://git-wip-us.apache.org/repos/asf/bookkeeper.git <bookkeeper.project.dir>
Create IntelliJ workspace
- Open Intellij and import the bookkeeper's root pom file (File -> Import Project)
Build
BookKeeper uses maven as its build system. Basic commands are listed as below (assume in root directory of your <bookkeeper.project.dir>):
Build all the components without running tests
$ mvn clean package -DskipTests
Build all the components and run all the tests
$ mvn clean package
Build a single component
$ mvn clean install -DskipTests // as bookkeeper is using shade plugin. shade only run when packaging so pre-install the dependencies. $ mvn -pl :<module-name> package [-DskipTests] // example: mvn-pl :bookkeeper-server package
Test a single class
$ mvn clean install -DskipTests // as bookkeeper is using shade plugin. shade only run when packaging so pre-install the dependencies. $ mvn -pl :<module-name> clean test -Dtest=<test-class-name>