Skip to content

Commit f88bdb1

Browse files
committed
feat: change Maven groupId from org.apache.bookkeeper to com.ascentstream.bookkeeper
Rebrand all Maven groupIds for the AscentStream fork: - org.apache.bookkeeper -> com.ascentstream.bookkeeper - org.apache.bookkeeper.http -> com.ascentstream.bookkeeper.http - org.apache.bookkeeper.stats -> com.ascentstream.bookkeeper.stats - org.apache.bookkeeper.tests -> com.ascentstream.bookkeeper.tests - org.apache.bookkeeper.metadata.drivers -> com.ascentstream.bookkeeper.metadata.drivers Changes include: - All pom.xml files (groupId declarations, parent refs, dependencies) - dependency-reduced-pom.xml files (groupId + shade includes) - Assembly XML files (exclude patterns) - bin/common.sh (module name regex patterns) - NAR system packages in cpu-affinity and native-io modules - Shade plugin artifactSet includes for correct artifact resolution Java package declarations and imports are intentionally not changed.
1 parent cec5188 commit f88bdb1

95 files changed

Lines changed: 312 additions & 312 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.

bin/common.sh

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

135135
# module names
136-
BOOKIE_SERVER_MODULE_NAME="(org.apache.bookkeeper-)?bookkeeper-server"
137-
TABLE_SERVICE_MODULE_NAME="(org.apache.bookkeeper-)?stream-storage-server"
136+
BOOKIE_SERVER_MODULE_NAME="(com.ascentstream.bookkeeper-)?bookkeeper-server"
137+
TABLE_SERVICE_MODULE_NAME="(com.ascentstream.bookkeeper-)?stream-storage-server"
138138

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

bookkeeper-benchmark/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
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.16.8-SNAPSHOT</version>
2525
</parent>
26-
<groupId>org.apache.bookkeeper</groupId>
26+
<groupId>com.ascentstream.bookkeeper</groupId>
2727
<artifactId>bookkeeper-benchmark</artifactId>
2828
<name>Apache BookKeeper :: Benchmark</name>
2929
<properties>
@@ -44,12 +44,12 @@
4444
</build>
4545
<dependencies>
4646
<dependency>
47-
<groupId>org.apache.bookkeeper</groupId>
47+
<groupId>com.ascentstream.bookkeeper</groupId>
4848
<artifactId>bookkeeper-server</artifactId>
4949
<version>${project.version}</version>
5050
</dependency>
5151
<dependency>
52-
<groupId>org.apache.bookkeeper</groupId>
52+
<groupId>com.ascentstream.bookkeeper</groupId>
5353
<artifactId>testtools</artifactId>
5454
<version>${project.parent.version}</version>
5555
<scope>test</scope>
@@ -73,14 +73,14 @@
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>
76-
<groupId>org.apache.bookkeeper</groupId>
76+
<groupId>com.ascentstream.bookkeeper</groupId>
7777
<artifactId>bookkeeper-common</artifactId>
7878
<version>${project.version}</version>
7979
<type>test-jar</type>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
83-
<groupId>org.apache.bookkeeper</groupId>
83+
<groupId>com.ascentstream.bookkeeper</groupId>
8484
<artifactId>bookkeeper-server</artifactId>
8585
<version>${project.version}</version>
8686
<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.16.8-SNAPSHOT</version>
2424
</parent>

bookkeeper-common/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
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.16.8-SNAPSHOT</version>
2424
</parent>
2525
<artifactId>bookkeeper-common</artifactId>
2626
<name>Apache BookKeeper :: Common</name>
2727
<dependencies>
2828
<dependency>
29-
<groupId>org.apache.bookkeeper.stats</groupId>
29+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
3030
<artifactId>bookkeeper-stats-api</artifactId>
3131
<version>${project.parent.version}</version>
3232
</dependency>
3333
<dependency>
34-
<groupId>org.apache.bookkeeper</groupId>
34+
<groupId>com.ascentstream.bookkeeper</groupId>
3535
<artifactId>cpu-affinity</artifactId>
3636
<version>${project.parent.version}</version>
3737
</dependency>
@@ -85,7 +85,7 @@
8585
<artifactId>rxjava</artifactId>
8686
</dependency>
8787
<dependency>
88-
<groupId>org.apache.bookkeeper</groupId>
88+
<groupId>com.ascentstream.bookkeeper</groupId>
8989
<artifactId>testtools</artifactId>
9090
<version>${project.parent.version}</version>
9191
<scope>test</scope>

bookkeeper-dist/all/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<parent>
2424
<artifactId>bookkeeper-dist</artifactId>
25-
<groupId>org.apache.bookkeeper</groupId>
25+
<groupId>com.ascentstream.bookkeeper</groupId>
2626
<version>4.16.8-SNAPSHOT</version>
2727
<relativePath>..</relativePath>
2828
</parent>
@@ -33,20 +33,20 @@
3333

3434
<dependencies>
3535
<dependency>
36-
<groupId>org.apache.bookkeeper</groupId>
36+
<groupId>com.ascentstream.bookkeeper</groupId>
3737
<artifactId>bookkeeper-server</artifactId>
3838
<version>${project.version}</version>
3939
</dependency>
4040

4141
<!-- bookkeeper.stats -->
4242
<dependency>
43-
<groupId>org.apache.bookkeeper.stats</groupId>
43+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
4444
<artifactId>bookkeeper-stats-api</artifactId>
4545
<version>${project.version}</version>
4646
</dependency>
4747

4848
<dependency>
49-
<groupId>org.apache.bookkeeper.stats</groupId>
49+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
5050
<artifactId>codahale-metrics-provider</artifactId>
5151
<version>${project.version}</version>
5252
<exclusions>
@@ -57,26 +57,26 @@
5757
</exclusions>
5858
</dependency>
5959
<dependency>
60-
<groupId>org.apache.bookkeeper.stats</groupId>
60+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
6161
<artifactId>prometheus-metrics-provider</artifactId>
6262
<version>${project.version}</version>
6363
</dependency>
6464

6565
<!-- bookkeeper.http -->
6666
<dependency>
67-
<groupId>org.apache.bookkeeper.http</groupId>
67+
<groupId>com.ascentstream.bookkeeper.http</groupId>
6868
<artifactId>http-server</artifactId>
6969
<version>${project.version}</version>
7070
</dependency>
7171
<dependency>
72-
<groupId>org.apache.bookkeeper.http</groupId>
72+
<groupId>com.ascentstream.bookkeeper.http</groupId>
7373
<artifactId>vertx-http-server</artifactId>
7474
<version>${project.version}</version>
7575
</dependency>
7676

7777
<!-- bookkeeper.tools (new CLI) -->
7878
<dependency>
79-
<groupId>org.apache.bookkeeper</groupId>
79+
<groupId>com.ascentstream.bookkeeper</groupId>
8080
<artifactId>bookkeeper-tools</artifactId>
8181
<version>${project.version}</version>
8282
</dependency>
@@ -91,20 +91,20 @@
9191

9292
<!-- stream.storage -->
9393
<dependency>
94-
<groupId>org.apache.bookkeeper</groupId>
94+
<groupId>com.ascentstream.bookkeeper</groupId>
9595
<artifactId>stream-storage-server</artifactId>
9696
<version>${project.version}</version>
9797
</dependency>
9898

9999
<!-- bookkeeper benchmark -->
100100
<dependency>
101-
<groupId>org.apache.bookkeeper</groupId>
101+
<groupId>com.ascentstream.bookkeeper</groupId>
102102
<artifactId>bookkeeper-benchmark</artifactId>
103103
<version>${project.version}</version>
104104
</dependency>
105105

106106
<dependency>
107-
<groupId>org.apache.bookkeeper</groupId>
107+
<groupId>com.ascentstream.bookkeeper</groupId>
108108
<artifactId>bookkeeper-perf</artifactId>
109109
<version>${project.version}</version>
110110
</dependency>

bookkeeper-dist/bkctl/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<parent>
2424
<artifactId>bookkeeper-dist</artifactId>
25-
<groupId>org.apache.bookkeeper</groupId>
25+
<groupId>com.ascentstream.bookkeeper</groupId>
2626
<version>4.16.8-SNAPSHOT</version>
2727
<relativePath>..</relativePath>
2828
</parent>
@@ -34,7 +34,7 @@
3434
<dependencies>
3535
<!-- bookkeeper.tools (new CLI) -->
3636
<dependency>
37-
<groupId>org.apache.bookkeeper</groupId>
37+
<groupId>com.ascentstream.bookkeeper</groupId>
3838
<artifactId>bookkeeper-tools</artifactId>
3939
<version>${project.version}</version>
4040
<exclusions>

bookkeeper-dist/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
<parent>
2020
<artifactId>bookkeeper</artifactId>
21-
<groupId>org.apache.bookkeeper</groupId>
21+
<groupId>com.ascentstream.bookkeeper</groupId>
2222
<version>4.16.8-SNAPSHOT</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>

bookkeeper-dist/server/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<parent>
2424
<artifactId>bookkeeper-dist</artifactId>
25-
<groupId>org.apache.bookkeeper</groupId>
25+
<groupId>com.ascentstream.bookkeeper</groupId>
2626
<version>4.16.8-SNAPSHOT</version>
2727
<relativePath>..</relativePath>
2828
</parent>
@@ -33,45 +33,45 @@
3333

3434
<dependencies>
3535
<dependency>
36-
<groupId>org.apache.bookkeeper</groupId>
36+
<groupId>com.ascentstream.bookkeeper</groupId>
3737
<artifactId>bookkeeper-server</artifactId>
3838
<version>${project.version}</version>
3939
</dependency>
4040

4141
<!-- bookkeeper.stats -->
4242
<dependency>
43-
<groupId>org.apache.bookkeeper.stats</groupId>
43+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
4444
<artifactId>bookkeeper-stats-api</artifactId>
4545
<version>${project.version}</version>
4646
</dependency>
4747
<dependency>
48-
<groupId>org.apache.bookkeeper.stats</groupId>
48+
<groupId>com.ascentstream.bookkeeper.stats</groupId>
4949
<artifactId>prometheus-metrics-provider</artifactId>
5050
<version>${project.version}</version>
5151
</dependency>
5252

5353
<!-- bookkeeper.http -->
5454
<dependency>
55-
<groupId>org.apache.bookkeeper.http</groupId>
55+
<groupId>com.ascentstream.bookkeeper.http</groupId>
5656
<artifactId>http-server</artifactId>
5757
<version>${project.version}</version>
5858
</dependency>
5959
<dependency>
60-
<groupId>org.apache.bookkeeper.http</groupId>
60+
<groupId>com.ascentstream.bookkeeper.http</groupId>
6161
<artifactId>vertx-http-server</artifactId>
6262
<version>${project.version}</version>
6363
</dependency>
6464

6565
<!-- stream.storage -->
6666
<dependency>
67-
<groupId>org.apache.bookkeeper</groupId>
67+
<groupId>com.ascentstream.bookkeeper</groupId>
6868
<artifactId>stream-storage-server</artifactId>
6969
<version>${project.version}</version>
7070
</dependency>
7171

7272
<!-- bookkeeper.tools (new CLI) -->
7373
<dependency>
74-
<groupId>org.apache.bookkeeper</groupId>
74+
<groupId>com.ascentstream.bookkeeper</groupId>
7575
<artifactId>bookkeeper-tools</artifactId>
7676
<version>${project.version}</version>
7777
</dependency>

bookkeeper-dist/src/assemble/bin-all.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
<outputFileNameMapping>${artifact.groupId}-${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
107107
<excludes>
108108
<!-- All these dependencies are already included in stream-storage-java-client -->
109-
<exclude>org.apache.bookkeeper:stream-storage-common</exclude>
110-
<exclude>org.apache.bookkeeper:stream-storage-proto</exclude>
111-
<exclude>org.apache.bookkeeper:stream-storage-api</exclude>
112-
<exclude>org.apache.bookkeeper:stream-storage-java-client-base</exclude>
113-
<exclude>org.apache.bookkeeper:stream-storage-java-kv-client</exclude>
109+
<exclude>com.ascentstream.bookkeeper:stream-storage-common</exclude>
110+
<exclude>com.ascentstream.bookkeeper:stream-storage-proto</exclude>
111+
<exclude>com.ascentstream.bookkeeper:stream-storage-api</exclude>
112+
<exclude>com.ascentstream.bookkeeper:stream-storage-java-client-base</exclude>
113+
<exclude>com.ascentstream.bookkeeper:stream-storage-java-kv-client</exclude>
114114
<exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
115115
</excludes>
116116
</dependencySet>

bookkeeper-dist/src/assemble/bin-server.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@
9292
<excludes>
9393
<exclude>com.google.code.findbugs:jsr305</exclude>
9494
<!-- All these dependencies are already included in stream-storage-java-client -->
95-
<exclude>org.apache.bookkeeper:stream-storage-common</exclude>
96-
<exclude>org.apache.bookkeeper:stream-storage-proto</exclude>
97-
<exclude>org.apache.bookkeeper:stream-storage-api</exclude>
98-
<exclude>org.apache.bookkeeper:stream-storage-java-client-base</exclude>
99-
<exclude>org.apache.bookkeeper:stream-storage-java-kv-client</exclude>
95+
<exclude>com.ascentstream.bookkeeper:stream-storage-common</exclude>
96+
<exclude>com.ascentstream.bookkeeper:stream-storage-proto</exclude>
97+
<exclude>com.ascentstream.bookkeeper:stream-storage-api</exclude>
98+
<exclude>com.ascentstream.bookkeeper:stream-storage-java-client-base</exclude>
99+
<exclude>com.ascentstream.bookkeeper:stream-storage-java-kv-client</exclude>
100100
<exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
101101
</excludes>
102102
</dependencySet>

0 commit comments

Comments
 (0)