Skip to content

Commit 80e2717

Browse files
JackieTien97HTHou
authored andcommitted
[To rc/2.0.3] Change ratis dependency from org.apache.ratis to com.timecho.ratis
1 parent 6202ff0 commit 80e2717

File tree

7 files changed

+26
-26
lines changed

7 files changed

+26
-26
lines changed

dependencies.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@
9595
"org.apache.commons:commons-pool2",
9696
"org.apache.httpcomponents:httpclient",
9797
"org.apache.httpcomponents:httpcore",
98-
"org.apache.ratis:ratis-client",
99-
"org.apache.ratis:ratis-common",
100-
"org.apache.ratis:ratis-grpc",
101-
"org.apache.ratis:ratis-metrics-api",
102-
"org.apache.ratis:ratis-proto",
103-
"org.apache.ratis:ratis-server",
104-
"org.apache.ratis:ratis-server-api",
98+
"com.timecho.ratis:ratis-client",
99+
"com.timecho.ratis:ratis-common",
100+
"com.timecho.ratis:ratis-grpc",
101+
"com.timecho.ratis:ratis-metrics-api",
102+
"com.timecho.ratis:ratis-proto",
103+
"com.timecho.ratis:ratis-server",
104+
"com.timecho.ratis:ratis-server-api",
105105
"org.apache.ratis:ratis-thirdparty-misc",
106106
"org.apache.thrift:libthrift",
107107
"org.apache.tsfile:common",

docker/src/main/Dockerfile-1c1d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN apt update \
4242
&& apt purge --auto-remove -y \
4343
&& apt clean -y \
4444
RUN dos2unix /iotdb/sbin/start-1c1d.sh
45-
RUN dos2unix /iotdb/sbin/../conf/iotdb-common.sh
45+
RUN dos2unix /iotdb/sbin/iotdb-common.sh
4646
RUN dos2unix /iotdb/sbin/start-confignode.sh
4747
RUN dos2unix /iotdb/sbin/../conf/confignode-env.sh
4848
RUN dos2unix /iotdb/sbin/stop-confignode.sh

iotdb-core/confignode/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<artifactId>commons-io</artifactId>
118118
</dependency>
119119
<dependency>
120-
<groupId>org.apache.ratis</groupId>
120+
<groupId>com.timecho.ratis</groupId>
121121
<artifactId>ratis-common</artifactId>
122122
</dependency>
123123
<dependency>

iotdb-core/consensus/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,31 +67,31 @@
6767
<version>2.0.4</version>
6868
</dependency>
6969
<dependency>
70-
<groupId>org.apache.ratis</groupId>
70+
<groupId>com.timecho.ratis</groupId>
7171
<artifactId>ratis-server</artifactId>
7272
</dependency>
7373
<dependency>
74-
<groupId>org.apache.ratis</groupId>
74+
<groupId>com.timecho.ratis</groupId>
7575
<artifactId>ratis-server-api</artifactId>
7676
</dependency>
7777
<dependency>
78-
<groupId>org.apache.ratis</groupId>
78+
<groupId>com.timecho.ratis</groupId>
7979
<artifactId>ratis-common</artifactId>
8080
</dependency>
8181
<dependency>
82-
<groupId>org.apache.ratis</groupId>
82+
<groupId>com.timecho.ratis</groupId>
8383
<artifactId>ratis-client</artifactId>
8484
</dependency>
8585
<dependency>
86-
<groupId>org.apache.ratis</groupId>
86+
<groupId>com.timecho.ratis</groupId>
8787
<artifactId>ratis-grpc</artifactId>
8888
</dependency>
8989
<dependency>
90-
<groupId>org.apache.ratis</groupId>
90+
<groupId>com.timecho.ratis</groupId>
9191
<artifactId>ratis-proto</artifactId>
9292
</dependency>
9393
<dependency>
94-
<groupId>org.apache.ratis</groupId>
94+
<groupId>com.timecho.ratis</groupId>
9595
<artifactId>ratis-metrics-api</artifactId>
9696
</dependency>
9797
<dependency>

iotdb-core/datanode/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
<artifactId>netty-common</artifactId>
165165
</dependency>
166166
<dependency>
167-
<groupId>org.apache.ratis</groupId>
167+
<groupId>com.timecho.ratis</groupId>
168168
<artifactId>ratis-common</artifactId>
169169
</dependency>
170170
<dependency>

iotdb-core/node-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
<scope>test</scope>
192192
</dependency>
193193
<dependency>
194-
<groupId>org.apache.ratis</groupId>
194+
<groupId>com.timecho.ratis</groupId>
195195
<artifactId>ratis-common</artifactId>
196196
</dependency>
197197
<dependency>

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
is for ensuring the SNAPSHOT will stay available. We should however have the Ratis folks do a
145145
new release soon, as releasing with this version is more than sub-ideal.
146146
-->
147-
<ratis.version>3.2.0-3247c7f-SNAPSHOT</ratis.version>
147+
<ratis.version>3.2.0</ratis.version>
148148
<reactive-streams.version>1.0.4</reactive-streams.version>
149149
<reactor-netty.version>1.1.20</reactor-netty.version>
150150
<reactor.version>3.5.18</reactor.version>
@@ -319,37 +319,37 @@
319319
<version>${commons-io.version}</version>
320320
</dependency>
321321
<dependency>
322-
<groupId>org.apache.ratis</groupId>
322+
<groupId>com.timecho.ratis</groupId>
323323
<artifactId>ratis-server</artifactId>
324324
<version>${ratis.version}</version>
325325
</dependency>
326326
<dependency>
327-
<groupId>org.apache.ratis</groupId>
327+
<groupId>com.timecho.ratis</groupId>
328328
<artifactId>ratis-server-api</artifactId>
329329
<version>${ratis.version}</version>
330330
</dependency>
331331
<dependency>
332-
<groupId>org.apache.ratis</groupId>
332+
<groupId>com.timecho.ratis</groupId>
333333
<artifactId>ratis-common</artifactId>
334334
<version>${ratis.version}</version>
335335
</dependency>
336336
<dependency>
337-
<groupId>org.apache.ratis</groupId>
337+
<groupId>com.timecho.ratis</groupId>
338338
<artifactId>ratis-client</artifactId>
339339
<version>${ratis.version}</version>
340340
</dependency>
341341
<dependency>
342-
<groupId>org.apache.ratis</groupId>
342+
<groupId>com.timecho.ratis</groupId>
343343
<artifactId>ratis-grpc</artifactId>
344344
<version>${ratis.version}</version>
345345
</dependency>
346346
<dependency>
347-
<groupId>org.apache.ratis</groupId>
347+
<groupId>com.timecho.ratis</groupId>
348348
<artifactId>ratis-proto</artifactId>
349349
<version>${ratis.version}</version>
350350
</dependency>
351351
<dependency>
352-
<groupId>org.apache.ratis</groupId>
352+
<groupId>com.timecho.ratis</groupId>
353353
<artifactId>ratis-metrics-api</artifactId>
354354
<version>${ratis.version}</version>
355355
</dependency>

0 commit comments

Comments
 (0)