Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Release 4.14.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
streamnativebot committed Apr 11, 2024
1 parent b7a9164 commit 1c2c472
Show file tree
Hide file tree
Showing 109 changed files with 2,841 additions and 2,047 deletions.
55 changes: 39 additions & 16 deletions bookkeeper-benchmark/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -15,15 +15,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>bookkeeper</artifactId>
<groupId>org.apache.bookkeeper</groupId>
<version>4.14.8-SNAPSHOT</version>
<groupId>io.streamnative</groupId>
<version>4.14.8.1</version>
</parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-benchmark</artifactId>
<name>Apache BookKeeper :: Benchmark</name>
<properties>
Expand All @@ -40,6 +39,30 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand All @@ -50,32 +73,32 @@
<scope>test</scope>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<scope>test</scope>
<!-- 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>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-server</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-server</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
Expand Down
18 changes: 14 additions & 4 deletions bookkeeper-common-allocator/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -18,14 +18,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper</artifactId>
<version>4.14.8-SNAPSHOT</version>
<version>4.14.8.1</version>
</parent>
<artifactId>bookkeeper-common-allocator</artifactId>
<name>Apache BookKeeper :: Common :: Allocator</name>
<dependencies>
<dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</dependency>
Expand All @@ -49,6 +49,16 @@
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
20 changes: 15 additions & 5 deletions bookkeeper-common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -18,20 +18,20 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper</artifactId>
<version>4.14.8-SNAPSHOT</version>
<version>4.14.8.1</version>
</parent>
<artifactId>bookkeeper-common</artifactId>
<name>Apache BookKeeper :: Common</name>
<dependencies>
<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<groupId>io.streamnative.stats</groupId>
<artifactId>bookkeeper-stats-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>cpu-affinity</artifactId>
<version>${project.parent.version}</version>
</dependency>
Expand Down Expand Up @@ -95,6 +95,16 @@
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
81 changes: 46 additions & 35 deletions bookkeeper-dist/all/pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
Expand All @@ -22,105 +23,91 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>bookkeeper-dist</artifactId>
<groupId>org.apache.bookkeeper</groupId>
<version>4.14.8-SNAPSHOT</version>
<groupId>io.streamnative</groupId>
<version>4.14.8.1</version>
<relativePath>..</relativePath>
</parent>

<artifactId>bookkeeper-dist-all</artifactId>
<packaging>jar</packaging>
<name>Apache BookKeeper :: Dist (All)</name>

<dependencies>
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-server</artifactId>
<version>${project.version}</version>
</dependency>

<!-- bookkeeper.stats -->
<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<groupId>io.streamnative.stats</groupId>
<artifactId>bookkeeper-stats-api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<groupId>io.streamnative.stats</groupId>
<artifactId>codahale-metrics-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper.stats</groupId>
<groupId>io.streamnative.stats</groupId>
<artifactId>prometheus-metrics-provider</artifactId>
<version>${project.version}</version>
</dependency>

<!-- bookkeeper.http -->
<dependency>
<groupId>org.apache.bookkeeper.http</groupId>
<groupId>io.streamnative.http</groupId>
<artifactId>http-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.bookkeeper.http</groupId>
<groupId>io.streamnative.http</groupId>
<artifactId>vertx-http-server</artifactId>
<version>${project.version}</version>
</dependency>

<!-- bookkeeper.tools (new CLI) -->
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-tools</artifactId>
<version>${project.version}</version>
</dependency>

<!-- dlog -->
<dependency>
<groupId>org.apache.distributedlog</groupId>
<groupId>io.streamnative</groupId>
<artifactId>distributedlog-core</artifactId>
<version>${project.version}</version>
</dependency>


<!-- stream.storage -->
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<artifactId>stream-storage-server</artifactId>
<version>${project.version}</version>
<groupId>io.streamnative</groupId>
<artifactId>stream-storage-server</artifactId>
<version>${project.version}</version>
</dependency>

<!-- bookkeeper benchmark -->
<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-benchmark</artifactId>
<version>${project.version}</version>
</dependency>

<!-- slf4j binding -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>

<dependency>
<groupId>org.apache.bookkeeper</groupId>
<groupId>io.streamnative</groupId>
<artifactId>bookkeeper-perf</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<!-- needed by ZooKeeper server -->
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
</dependency>
<dependency>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<!-- needed by ZooKeeper server -->
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -152,6 +139,30 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 1c2c472

Please sign in to comment.