Skip to content

Commit c6e0e82

Browse files
authored
Move authority dependencies to distribution module (#36308)
* Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module * Move authority dependencies to distribution module
1 parent d9d1887 commit c6e0e82

File tree

15 files changed

+110
-35
lines changed

15 files changed

+110
-35
lines changed

distribution/jdbc/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,18 @@
5252
<version>${project.version}</version>
5353
<scope>runtime</scope>
5454
</dependency>
55+
<dependency>
56+
<groupId>org.apache.shardingsphere</groupId>
57+
<artifactId>shardingsphere-authority-simple</artifactId>
58+
<version>${project.version}</version>
59+
<scope>runtime</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.apache.shardingsphere</groupId>
63+
<artifactId>shardingsphere-authority-database</artifactId>
64+
<version>${project.version}</version>
65+
<scope>runtime</scope>
66+
</dependency>
5567
</dependencies>
5668

5769
<profiles>

distribution/proxy-native/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@
4848
<version>${project.version}</version>
4949
<scope>runtime</scope>
5050
</dependency>
51+
<dependency>
52+
<groupId>org.apache.shardingsphere</groupId>
53+
<artifactId>shardingsphere-authority-simple</artifactId>
54+
<version>${project.version}</version>
55+
<scope>runtime</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.apache.shardingsphere</groupId>
59+
<artifactId>shardingsphere-authority-database</artifactId>
60+
<version>${project.version}</version>
61+
<scope>runtime</scope>
62+
</dependency>
5163
<dependency>
5264
<groupId>org.apache.shardingsphere</groupId>
5365
<artifactId>shardingsphere-infra-reachability-metadata</artifactId>

distribution/proxy/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@
4040
<version>${project.version}</version>
4141
<scope>runtime</scope>
4242
</dependency>
43+
<dependency>
44+
<groupId>org.apache.shardingsphere</groupId>
45+
<artifactId>shardingsphere-authority-simple</artifactId>
46+
<version>${project.version}</version>
47+
<scope>runtime</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.apache.shardingsphere</groupId>
51+
<artifactId>shardingsphere-authority-database</artifactId>
52+
<version>${project.version}</version>
53+
<scope>runtime</scope>
54+
</dependency>
4355

4456
<dependency>
4557
<groupId>com.zaxxer</groupId>

infra/context/pom.xml

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -37,41 +37,6 @@
3737
<artifactId>shardingsphere-infra-executor</artifactId>
3838
<version>${project.version}</version>
3939
</dependency>
40-
<dependency>
41-
<groupId>org.apache.shardingsphere</groupId>
42-
<artifactId>shardingsphere-parser-distsql-engine</artifactId>
43-
<version>${project.version}</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.apache.shardingsphere</groupId>
47-
<artifactId>shardingsphere-authority-core</artifactId>
48-
<version>${project.version}</version>
49-
</dependency>
50-
<dependency>
51-
<groupId>org.apache.shardingsphere</groupId>
52-
<artifactId>shardingsphere-authority-simple</artifactId>
53-
<version>${project.version}</version>
54-
</dependency>
55-
<dependency>
56-
<groupId>org.apache.shardingsphere</groupId>
57-
<artifactId>shardingsphere-authority-database</artifactId>
58-
<version>${project.version}</version>
59-
</dependency>
60-
<dependency>
61-
<groupId>org.apache.shardingsphere</groupId>
62-
<artifactId>shardingsphere-single-api</artifactId>
63-
<version>${project.version}</version>
64-
</dependency>
65-
<dependency>
66-
<groupId>org.apache.shardingsphere</groupId>
67-
<artifactId>shardingsphere-transaction-core</artifactId>
68-
<version>${project.version}</version>
69-
</dependency>
70-
<dependency>
71-
<groupId>org.apache.shardingsphere</groupId>
72-
<artifactId>shardingsphere-sql-translator-core</artifactId>
73-
<version>${project.version}</version>
74-
</dependency>
7540

7641
<dependency>
7742
<groupId>org.apache.shardingsphere</groupId>

jdbc/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,12 @@
120120
<version>${project.version}</version>
121121
<scope>test</scope>
122122
</dependency>
123+
<dependency>
124+
<groupId>org.apache.shardingsphere</groupId>
125+
<artifactId>shardingsphere-authority-simple</artifactId>
126+
<version>${project.version}</version>
127+
<scope>test</scope>
128+
</dependency>
123129

124130
<dependency>
125131
<groupId>org.apache.shardingsphere</groupId>

kernel/sql-federation/executor/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
<artifactId>shardingsphere-infra-context</artifactId>
4343
<version>${project.version}</version>
4444
</dependency>
45+
<dependency>
46+
<groupId>org.apache.shardingsphere</groupId>
47+
<artifactId>shardingsphere-authority-core</artifactId>
48+
<version>${project.version}</version>
49+
</dependency>
4550

4651
<dependency>
4752
<groupId>org.apache.shardingsphere</groupId>

mode/core/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@
3737
<artifactId>shardingsphere-mode-node</artifactId>
3838
<version>${project.version}</version>
3939
</dependency>
40+
<dependency>
41+
<groupId>org.apache.shardingsphere</groupId>
42+
<artifactId>shardingsphere-single-api</artifactId>
43+
<version>${project.version}</version>
44+
</dependency>
4045

4146
<dependency>
4247
<groupId>org.apache.shardingsphere</groupId>

mode/type/cluster/core/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,11 @@
6666
<version>${project.version}</version>
6767
<scope>test</scope>
6868
</dependency>
69+
<dependency>
70+
<groupId>org.apache.shardingsphere</groupId>
71+
<artifactId>shardingsphere-authority-simple</artifactId>
72+
<version>${project.version}</version>
73+
<scope>test</scope>
74+
</dependency>
6975
</dependencies>
7076
</project>

proxy/backend/core/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,18 @@
207207
<version>${project.version}</version>
208208
<scope>test</scope>
209209
</dependency>
210+
<dependency>
211+
<groupId>org.apache.shardingsphere</groupId>
212+
<artifactId>shardingsphere-authority-simple</artifactId>
213+
<version>${project.version}</version>
214+
<scope>test</scope>
215+
</dependency>
216+
<dependency>
217+
<groupId>org.apache.shardingsphere</groupId>
218+
<artifactId>shardingsphere-authority-database</artifactId>
219+
<version>${project.version}</version>
220+
<scope>test</scope>
221+
</dependency>
210222

211223
<dependency>
212224
<groupId>com.h2database</groupId>

proxy/backend/type/mysql/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,11 @@
5555
<version>${project.version}</version>
5656
<scope>test</scope>
5757
</dependency>
58+
<dependency>
59+
<groupId>org.apache.shardingsphere</groupId>
60+
<artifactId>shardingsphere-authority-database</artifactId>
61+
<version>${project.version}</version>
62+
<scope>test</scope>
63+
</dependency>
5864
</dependencies>
5965
</project>

0 commit comments

Comments
 (0)