This is an automated email from the ASF dual-hosted git repository.
roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 1936730 Update name of modules (#12)
1936730 is described below
commit 1936730b72aa8794f95cfd047b165957a02c47a4
Author: Kaijie Chen <[email protected]>
AuthorDate: Mon Jul 4 18:50:34 2022 +0800
Update name of modules (#12)
### What changes were proposed in this pull request?
Change or add module names in `pom.xml`.
The `artifactId` is not changed.
### Why are the changes needed?
For clarity and consistency.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
#### -Pspark3
```console
$ mvn clean package -T1C -DskipTests -Pspark3
...
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary for Apache Uniffle 0.6.0-snapshot:
[INFO]
[INFO] Apache Uniffle ..................................... SUCCESS [
3.894 s]
[INFO] Apache Uniffle Protocols ........................... SUCCESS [
11.798 s]
[INFO] Apache Uniffle Common .............................. SUCCESS [
6.869 s]
[INFO] Apache Uniffle Coordinator ......................... SUCCESS [
13.413 s]
[INFO] Apache Uniffle Internal Client ..................... SUCCESS [
3.790 s]
[INFO] Apache Uniffle Storage ............................. SUCCESS [
9.902 s]
[INFO] Apache Uniffle Server .............................. SUCCESS [
15.177 s]
[INFO] Apache Uniffle Client .............................. SUCCESS [
5.765 s]
[INFO] Apache Uniffle Intergration Test (Common) .......... SUCCESS [
7.017 s]
[INFO] Apache Uniffle Client (Spark Common) ............... SUCCESS [
7.755 s]
[INFO] Apache Uniffle Client (Spark 3) .................... SUCCESS [
13.014 s]
[INFO] Apache Uniffle Intergration Test (Spark Common) .... SUCCESS [
4.655 s]
[INFO] Apache Uniffle Intergration Test (Spark 3) ......... SUCCESS [
3.321 s]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO]
------------------------------------------------------------------------
```
#### -Pspark2
```console
$ mvn clean package -T1C -DskipTests -Pspark2
...
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary for Apache Uniffle 0.6.0-snapshot:
[INFO]
[INFO] Apache Uniffle ..................................... SUCCESS [
3.698 s]
[INFO] Apache Uniffle Protocols ........................... SUCCESS [
11.866 s]
[INFO] Apache Uniffle Common .............................. SUCCESS [
7.135 s]
[INFO] Apache Uniffle Coordinator ......................... SUCCESS [
14.535 s]
[INFO] Apache Uniffle Internal Client ..................... SUCCESS [
4.360 s]
[INFO] Apache Uniffle Storage ............................. SUCCESS [
10.356 s]
[INFO] Apache Uniffle Server .............................. SUCCESS [
12.237 s]
[INFO] Apache Uniffle Client .............................. SUCCESS [
5.601 s]
[INFO] Apache Uniffle Intergration Test (Common) .......... SUCCESS [
6.422 s]
[INFO] Apache Uniffle Client (Spark Common) ............... SUCCESS [
49.658 s]
[INFO] Apache Uniffle Client (Spark 2) .................... SUCCESS [
13.111 s]
[INFO] Apache Uniffle Intergration Test (Spark Common) .... SUCCESS [
21.678 s]
[INFO] Apache Uniffle Intergration Test (Spark 2) ......... SUCCESS [
2.615 s]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO]
------------------------------------------------------------------------
```
#### -Pmr
```console
$ mvn clean package -T1C -DskipTests -Pmr
...
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary for Apache Uniffle 0.6.0-snapshot:
[INFO]
[INFO] Apache Uniffle ..................................... SUCCESS [
3.927 s]
[INFO] Apache Uniffle Protocols ........................... SUCCESS [
12.346 s]
[INFO] Apache Uniffle Common .............................. SUCCESS [
7.212 s]
[INFO] Apache Uniffle Coordinator ......................... SUCCESS [
14.055 s]
[INFO] Apache Uniffle Internal Client ..................... SUCCESS [
3.966 s]
[INFO] Apache Uniffle Storage ............................. SUCCESS [
10.164 s]
[INFO] Apache Uniffle Server .............................. SUCCESS [
12.570 s]
[INFO] Apache Uniffle Client .............................. SUCCESS [
5.674 s]
[INFO] Apache Uniffle Intergration Test (Common) .......... SUCCESS [
6.745 s]
[INFO] Apache Uniffle Client (MapReduce) .................. SUCCESS [
18.824 s]
[INFO] Apache Uniffle Intergration Test (MapReduce) ....... SUCCESS [
3.924 s]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO]
------------------------------------------------------------------------
```
---
client-mr/pom.xml | 1 +
client-spark/common/pom.xml | 1 +
client-spark/spark2/pom.xml | 1 +
client-spark/spark3/pom.xml | 1 +
client/pom.xml | 1 +
common/pom.xml | 2 +-
coordinator/pom.xml | 2 +-
integration-test/common/pom.xml | 1 +
integration-test/mr/pom.xml | 1 +
integration-test/spark-common/pom.xml | 1 +
integration-test/spark2/pom.xml | 1 +
integration-test/spark3/pom.xml | 1 +
internal-client/pom.xml | 1 +
pom.xml | 4 ++--
proto/pom.xml | 2 +-
server/pom.xml | 2 +-
storage/pom.xml | 2 +-
17 files changed, 18 insertions(+), 7 deletions(-)
diff --git a/client-mr/pom.xml b/client-mr/pom.xml
index 99bd787..1665c6c 100644
--- a/client-mr/pom.xml
+++ b/client-mr/pom.xml
@@ -30,6 +30,7 @@
<artifactId>rss-client-mr</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Client (MapReduce)</name>
<dependencies>
<dependency>
diff --git a/client-spark/common/pom.xml b/client-spark/common/pom.xml
index d4478be..78b8fa4 100644
--- a/client-spark/common/pom.xml
+++ b/client-spark/common/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-client-spark-common</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Client (Spark Common)</name>
<dependencies>
<dependency>
diff --git a/client-spark/spark2/pom.xml b/client-spark/spark2/pom.xml
index 418d5aa..d925b18 100644
--- a/client-spark/spark2/pom.xml
+++ b/client-spark/spark2/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-client-spark2</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Client (Spark 2)</name>
<dependencies>
<dependency>
diff --git a/client-spark/spark3/pom.xml b/client-spark/spark3/pom.xml
index e320832..e00f29d 100644
--- a/client-spark/spark3/pom.xml
+++ b/client-spark/spark3/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-client-spark3</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Client (Spark 3)</name>
<dependencies>
<dependency>
diff --git a/client/pom.xml b/client/pom.xml
index fec234b..49b0436 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -30,6 +30,7 @@
<artifactId>rss-client</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Client</name>
<dependencies>
<dependency>
diff --git a/common/pom.xml b/common/pom.xml
index 9cee205..9d3f385 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -27,7 +27,7 @@
<artifactId>rss-common</artifactId>
<packaging>jar</packaging>
- <name>Remote Shuffle Service Common</name>
+ <name>Apache Uniffle Common</name>
<dependencies>
<dependency>
diff --git a/coordinator/pom.xml b/coordinator/pom.xml
index df8f0a0..686534a 100644
--- a/coordinator/pom.xml
+++ b/coordinator/pom.xml
@@ -29,7 +29,7 @@
<artifactId>coordinator</artifactId>
<packaging>jar</packaging>
- <name>Coordinator</name>
+ <name>Apache Uniffle Coordinator</name>
<dependencies>
<dependency>
diff --git a/integration-test/common/pom.xml b/integration-test/common/pom.xml
index 1afb2ef..deeb403 100644
--- a/integration-test/common/pom.xml
+++ b/integration-test/common/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-integration-common-test</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Intergration Test (Common)</name>
<dependencies>
<dependency>
diff --git a/integration-test/mr/pom.xml b/integration-test/mr/pom.xml
index f94ef94..cc9e9c1 100644
--- a/integration-test/mr/pom.xml
+++ b/integration-test/mr/pom.xml
@@ -30,6 +30,7 @@
<artifactId>rss-integration-mr-test</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Intergration Test (MapReduce)</name>
<dependencies>
<dependency>
diff --git a/integration-test/spark-common/pom.xml
b/integration-test/spark-common/pom.xml
index 425be40..3a7b56a 100644
--- a/integration-test/spark-common/pom.xml
+++ b/integration-test/spark-common/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-integration-spark-common-test</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Intergration Test (Spark Common)</name>
<dependencies>
<dependency>
diff --git a/integration-test/spark2/pom.xml b/integration-test/spark2/pom.xml
index 7fef33d..08557d8 100644
--- a/integration-test/spark2/pom.xml
+++ b/integration-test/spark2/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-integration-spark2-test</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Intergration Test (Spark 2)</name>
<dependencies>
diff --git a/integration-test/spark3/pom.xml b/integration-test/spark3/pom.xml
index 1205797..c166979 100644
--- a/integration-test/spark3/pom.xml
+++ b/integration-test/spark3/pom.xml
@@ -31,6 +31,7 @@
<artifactId>rss-integration-spark3-test</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Intergration Test (Spark 3)</name>
<dependencies>
diff --git a/internal-client/pom.xml b/internal-client/pom.xml
index 853a04d..4795f69 100644
--- a/internal-client/pom.xml
+++ b/internal-client/pom.xml
@@ -30,6 +30,7 @@
<artifactId>rss-internal-client</artifactId>
<version>0.6.0-snapshot</version>
<packaging>jar</packaging>
+ <name>Apache Uniffle Internal Client</name>
<dependencies>
<dependency>
diff --git a/pom.xml b/pom.xml
index a7c6f1a..562864f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,8 +25,8 @@
<artifactId>uniffle-parent</artifactId>
<version>0.6.0-snapshot</version>
<packaging>pom</packaging>
- <name>Remote Shuffle Service Project Parent POM</name>
- <description>Remote Shuffle Service Project</description>
+ <name>Apache Uniffle</name>
+ <description>A high performance, general purpose Remote Shuffle
Service.</description>
<parent>
<groupId>org.apache</groupId>
diff --git a/proto/pom.xml b/proto/pom.xml
index 34d7f11..5f474bd 100644
--- a/proto/pom.xml
+++ b/proto/pom.xml
@@ -25,7 +25,7 @@
</parent>
<artifactId>rss-proto</artifactId>
- <name>Remote Shuffle Service Protocols</name>
+ <name>Apache Uniffle Protocols</name>
<dependencies>
<dependency>
diff --git a/server/pom.xml b/server/pom.xml
index ab84361..1051c3a 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -29,7 +29,7 @@
<artifactId>shuffle-server</artifactId>
<packaging>jar</packaging>
- <name>Shuffle Server</name>
+ <name>Apache Uniffle Server</name>
<dependencies>
<dependency>
diff --git a/storage/pom.xml b/storage/pom.xml
index 44d2af6..fc741e3 100644
--- a/storage/pom.xml
+++ b/storage/pom.xml
@@ -29,7 +29,7 @@
<artifactId>shuffle-storage</artifactId>
<packaging>jar</packaging>
- <name>Shuffle Storage</name>
+ <name>Apache Uniffle Storage</name>
<dependencies>
<dependency>