Skip to content

Commit

Permalink
Add package management bookkeeper storage jar into the distribution p…
Browse files Browse the repository at this point in the history
…ackage (apache#8861)

Master Issue: apache#8676

*Motivation*

Currently, the package management bookkeeper storage jar is not in the distribution
package so the service can not find the storage class to start up.

*Modifications*

- Add pulsar-package-bookkeeper-storage.jar to the distribution module
  • Loading branch information
zymap authored Dec 9, 2020
1 parent 5f250b5 commit 2a28b25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions distribution/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,18 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pulsar-package-bookkeeper-storage</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.objenesis</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pulsar-client-tools</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pulsar-package-management/bookkeeper-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>bookkeeper-storage</artifactId>
<artifactId>pulsar-package-bookkeeper-storage</artifactId>
<name>Apache Pulsar :: Package Management :: BookKeeper Storage</name>

<dependencies>
Expand Down

0 comments on commit 2a28b25

Please sign in to comment.