Skip to content

Commit

Permalink
Allow run LocalBookkeeper directly in bookkeeper-server module or o…
Browse files Browse the repository at this point in the history
…n IDE (#3255)
  • Loading branch information
shoothzj committed May 4, 2022
1 parent 8c661df commit e79da7c
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions bookkeeper-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,21 @@
<groupId>io.reactivex.rxjava3</groupId>
<artifactId>rxjava</artifactId>
</dependency>
<!-- used on test and main method like `LocalBookKeeper` -->
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<!-- testing dependencies -->
<dependency>
<groupId>org.apache.bookkeeper</groupId>
Expand Down Expand Up @@ -172,18 +187,6 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<artifactId>prometheus-metrics-provider</artifactId>
Expand Down

0 comments on commit e79da7c

Please sign in to comment.