Skip to content

Commit 277a915

Browse files
committed
chore: update groupId from org.apache to com.ascentstream
1 parent 6fac859 commit 277a915

83 files changed

Lines changed: 241 additions & 236 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/bk-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ name: BookKeeper CI
2222
on:
2323
pull_request:
2424
branches:
25+
- as-master
2526
- master
2627
- branch-*
2728
push:
2829
branches:
30+
- as-master
2931
- master
3032
- branch-*
3133
workflow_dispatch:

.github/workflows/bk-streamstorage-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ name: BookKeeper StreamStorage Python Client
2121
on:
2222
pull_request:
2323
branches:
24+
- as-master
2425
- master
2526
- branch-*
2627
paths:

.github/workflows/dead-link-checker.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
push:
2121
pull_request:
2222
branches:
23+
- as-master
2324
- master
2425
- branch-*
2526
paths:

.github/workflows/website-pr-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ on:
2323
workflow_dispatch:
2424
pull_request:
2525
branches:
26+
- as-master
2627
- master
2728
- branch-*
2829
paths:

bin/bkctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ source ${BK_HOME}/bin/common.sh
2828
source ${BK_HOME}/conf/bk_cli_env.sh
2929

3030
CLI_MODULE_PATH=tools/all
31-
CLI_MODULE_NAME="(org.apache.bookkeeper-)?bookkeeper-tools"
31+
CLI_MODULE_NAME="(com.ascentstream.bookkeeper-)?bookkeeper-tools"
3232
CLI_MODULE_HOME=${BK_HOME}/${CLI_MODULE_PATH}
3333

3434
# find the module jar

bin/bkperf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ source ${BK_HOME}/bin/common.sh
2727
source ${BK_HOME}/conf/bk_cli_env.sh
2828

2929
CLI_MODULE_PATH=tools/perf
30-
CLI_MODULE_NAME="(org.apache.bookkeeper-)?bookkeeper-perf"
30+
CLI_MODULE_NAME="(com.ascentstream.bookkeeper-)?bookkeeper-perf"
3131
CLI_MODULE_HOME=${BK_HOME}/${CLI_MODULE_PATH}
3232

3333
# find the module jar

bin/common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ CLI_GC_OPTS=${CLI_GC_OPTS:-"${DEFAULT_CLI_GC_OPTS}"}
116116
CLI_GC_LOGGING_OPTS=${CLI_GC_LOGGING_OPTS:-"${DEFAULT_CLI_GC_LOGGING_OPTS}"}
117117

118118
# module names
119-
BOOKIE_SERVER_MODULE_NAME="(org.apache.bookkeeper-)?bookkeeper-server"
120-
TABLE_SERVICE_MODULE_NAME="(org.apache.bookkeeper-)?stream-storage-server"
119+
BOOKIE_SERVER_MODULE_NAME="(com.ascentstream.bookkeeper-)?bookkeeper-server"
120+
TABLE_SERVICE_MODULE_NAME="(com.ascentstream.bookkeeper-)?stream-storage-server"
121121

122122
is_released_binary() {
123123
if [ -d ${BK_HOME}/lib ]; then

bin/dlog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BK_HOME=`cd ${BINDIR}/..;pwd`
2525

2626
source ${BK_HOME}/bin/common.sh
2727

28-
DLOG_MODULE_NAME="(org.apache.distributedlog-)?distributedlog-core"
28+
DLOG_MODULE_NAME="(com.ascentstream.distributedlog-)?distributedlog-core"
2929
DLOG_MODULE_PATH=stream/distributedlog/core
3030
DLOG_MODULE_HOME=${BK_HOME}/${DLOG_MODULE_PATH}
3131

bookkeeper-benchmark/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
2222
<artifactId>bookkeeper</artifactId>
23-
<groupId>org.apache.bookkeeper</groupId>
23+
<groupId>com.ascentstream.bookkeeper</groupId>
2424
<version>4.18.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>bookkeeper-benchmark</artifactId>
@@ -43,12 +43,12 @@
4343
</build>
4444
<dependencies>
4545
<dependency>
46-
<groupId>org.apache.bookkeeper</groupId>
46+
<groupId>com.ascentstream.bookkeeper</groupId>
4747
<artifactId>bookkeeper-server</artifactId>
4848
<version>${project.version}</version>
4949
</dependency>
5050
<dependency>
51-
<groupId>org.apache.bookkeeper</groupId>
51+
<groupId>com.ascentstream.bookkeeper</groupId>
5252
<artifactId>testtools</artifactId>
5353
<version>${project.parent.version}</version>
5454
<scope>test</scope>
@@ -72,14 +72,14 @@
7272
<scope>test</scope>
7373
</dependency>
7474
<dependency>
75-
<groupId>org.apache.bookkeeper</groupId>
75+
<groupId>com.ascentstream.bookkeeper</groupId>
7676
<artifactId>bookkeeper-common</artifactId>
7777
<version>${project.version}</version>
7878
<type>test-jar</type>
7979
<scope>test</scope>
8080
</dependency>
8181
<dependency>
82-
<groupId>org.apache.bookkeeper</groupId>
82+
<groupId>com.ascentstream.bookkeeper</groupId>
8383
<artifactId>bookkeeper-server</artifactId>
8484
<version>${project.version}</version>
8585
<type>test-jar</type>

bookkeeper-common-allocator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<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">
1919
<modelVersion>4.0.0</modelVersion>
2020
<parent>
21-
<groupId>org.apache.bookkeeper</groupId>
21+
<groupId>com.ascentstream.bookkeeper</groupId>
2222
<artifactId>bookkeeper</artifactId>
2323
<version>4.18.0-SNAPSHOT</version>
2424
</parent>

0 commit comments

Comments
 (0)