Skip to content

Commit c452bfc

Browse files
authored
Add all profile for release (#36197)
* Add all profile for release * Add all profile for release
1 parent f0b8b2c commit c452bfc

File tree

15 files changed

+634
-24
lines changed

15 files changed

+634
-24
lines changed

agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Supports for OpenTelemetry.
2424
```shell
2525
git clone https://github.com/apache/shardingsphere.git
2626
cd shardingsphere
27-
./mvnw clean install -Prelease,default-dep
27+
./mvnw clean install -P-dev,release,all
2828
```
2929

3030
Artifact is `distribution/agent/target/apache-shardingsphere-${latest.release.version}-shardingsphere-agent-bin.tar.gz`

distribution/jdbc/pom.xml

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,178 @@
200200
</dependencies>
201201
</profile>
202202

203+
<profile>
204+
<id>all</id>
205+
<dependencies>
206+
<dependency>
207+
<groupId>org.apache.shardingsphere</groupId>
208+
<artifactId>shardingsphere-jdbc-dialect-postgresql</artifactId>
209+
<version>${project.version}</version>
210+
<scope>runtime</scope>
211+
</dependency>
212+
<dependency>
213+
<groupId>org.apache.shardingsphere</groupId>
214+
<artifactId>shardingsphere-jdbc-dialect-mysql</artifactId>
215+
<version>${project.version}</version>
216+
<scope>runtime</scope>
217+
</dependency>
218+
<dependency>
219+
<groupId>org.apache.shardingsphere</groupId>
220+
<artifactId>shardingsphere-jdbc-dialect-oracle</artifactId>
221+
<version>${project.version}</version>
222+
<scope>runtime</scope>
223+
</dependency>
224+
<dependency>
225+
<groupId>org.apache.shardingsphere</groupId>
226+
<artifactId>shardingsphere-jdbc-dialect-sqlserver</artifactId>
227+
<version>${project.version}</version>
228+
<scope>runtime</scope>
229+
</dependency>
230+
<dependency>
231+
<groupId>org.apache.shardingsphere</groupId>
232+
<artifactId>shardingsphere-jdbc-dialect-opengauss</artifactId>
233+
<version>${project.version}</version>
234+
<scope>runtime</scope>
235+
</dependency>
236+
<dependency>
237+
<groupId>org.apache.shardingsphere</groupId>
238+
<artifactId>shardingsphere-jdbc-dialect-firebird</artifactId>
239+
<version>${project.version}</version>
240+
<scope>runtime</scope>
241+
</dependency>
242+
<dependency>
243+
<groupId>org.apache.shardingsphere</groupId>
244+
<artifactId>shardingsphere-jdbc-dialect-mariadb</artifactId>
245+
<version>${project.version}</version>
246+
<scope>runtime</scope>
247+
</dependency>
248+
<dependency>
249+
<groupId>org.apache.shardingsphere</groupId>
250+
<artifactId>shardingsphere-jdbc-dialect-clickhouse</artifactId>
251+
<version>${project.version}</version>
252+
<scope>runtime</scope>
253+
</dependency>
254+
<dependency>
255+
<groupId>org.apache.shardingsphere</groupId>
256+
<artifactId>shardingsphere-jdbc-dialect-doris</artifactId>
257+
<version>${project.version}</version>
258+
<scope>runtime</scope>
259+
</dependency>
260+
<dependency>
261+
<groupId>org.apache.shardingsphere</groupId>
262+
<artifactId>shardingsphere-jdbc-dialect-hive</artifactId>
263+
<version>${project.version}</version>
264+
<scope>runtime</scope>
265+
</dependency>
266+
<dependency>
267+
<groupId>org.apache.shardingsphere</groupId>
268+
<artifactId>shardingsphere-jdbc-dialect-presto</artifactId>
269+
<version>${project.version}</version>
270+
<scope>runtime</scope>
271+
</dependency>
272+
<dependency>
273+
<groupId>org.apache.shardingsphere</groupId>
274+
<artifactId>shardingsphere-transaction-xa-atomikos</artifactId>
275+
<version>${project.version}</version>
276+
<scope>runtime</scope>
277+
</dependency>
278+
<dependency>
279+
<groupId>org.apache.shardingsphere</groupId>
280+
<artifactId>shardingsphere-transaction-xa-narayana</artifactId>
281+
<version>${project.version}</version>
282+
<scope>runtime</scope>
283+
</dependency>
284+
<dependency>
285+
<groupId>org.apache.shardingsphere</groupId>
286+
<artifactId>shardingsphere-transaction-base-seata-at</artifactId>
287+
<version>${project.version}</version>
288+
<scope>runtime</scope>
289+
</dependency>
290+
<dependency>
291+
<groupId>org.apache.shardingsphere</groupId>
292+
<artifactId>shardingsphere-standalone-mode-repository-memory</artifactId>
293+
<version>${project.version}</version>
294+
<scope>runtime</scope>
295+
</dependency>
296+
<dependency>
297+
<groupId>org.apache.shardingsphere</groupId>
298+
<artifactId>shardingsphere-standalone-mode-repository-jdbc</artifactId>
299+
<version>${project.version}</version>
300+
<scope>runtime</scope>
301+
</dependency>
302+
<dependency>
303+
<groupId>org.apache.shardingsphere</groupId>
304+
<artifactId>shardingsphere-cluster-mode-repository-zookeeper</artifactId>
305+
<version>${project.version}</version>
306+
<scope>runtime</scope>
307+
</dependency>
308+
<dependency>
309+
<groupId>org.apache.shardingsphere</groupId>
310+
<artifactId>shardingsphere-cluster-mode-repository-etcd</artifactId>
311+
<version>${project.version}</version>
312+
<scope>runtime</scope>
313+
</dependency>
314+
315+
<dependency>
316+
<groupId>org.apache.shardingsphere</groupId>
317+
<artifactId>shardingsphere-database-time-service</artifactId>
318+
<version>${project.version}</version>
319+
<scope>runtime</scope>
320+
</dependency>
321+
322+
<dependency>
323+
<groupId>org.apache.shardingsphere</groupId>
324+
<artifactId>shardingsphere-sharding-core</artifactId>
325+
<version>${project.version}</version>
326+
<scope>runtime</scope>
327+
</dependency>
328+
<dependency>
329+
<groupId>org.apache.shardingsphere</groupId>
330+
<artifactId>shardingsphere-sharding-mysql</artifactId>
331+
<version>${project.version}</version>
332+
<scope>runtime</scope>
333+
</dependency>
334+
335+
<dependency>
336+
<groupId>org.apache.shardingsphere</groupId>
337+
<artifactId>shardingsphere-broadcast-core</artifactId>
338+
<version>${project.version}</version>
339+
<scope>runtime</scope>
340+
</dependency>
341+
<dependency>
342+
<groupId>org.apache.shardingsphere</groupId>
343+
<artifactId>shardingsphere-readwrite-splitting-core</artifactId>
344+
<version>${project.version}</version>
345+
<scope>runtime</scope>
346+
</dependency>
347+
<dependency>
348+
<groupId>org.apache.shardingsphere</groupId>
349+
<artifactId>shardingsphere-shadow-core</artifactId>
350+
<version>${project.version}</version>
351+
<scope>runtime</scope>
352+
</dependency>
353+
<dependency>
354+
<groupId>org.apache.shardingsphere</groupId>
355+
<artifactId>shardingsphere-encrypt-core</artifactId>
356+
<version>${project.version}</version>
357+
<scope>runtime</scope>
358+
</dependency>
359+
<dependency>
360+
<groupId>org.apache.shardingsphere</groupId>
361+
<artifactId>shardingsphere-mask-core</artifactId>
362+
<version>${project.version}</version>
363+
<scope>runtime</scope>
364+
</dependency>
365+
366+
<dependency>
367+
<groupId>org.apache.shardingsphere</groupId>
368+
<artifactId>shardingsphere-infra-reachability-metadata</artifactId>
369+
<version>${project.version}</version>
370+
<scope>runtime</scope>
371+
</dependency>
372+
</dependencies>
373+
</profile>
374+
203375
<profile>
204376
<id>db-postgresql</id>
205377
<dependencies>

0 commit comments

Comments
 (0)