This is an automated email from the ASF dual-hosted git repository.
hongze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 095f4fc2aa [CORE] Minor: Use lower case for Maven profile names (#8001)
095f4fc2aa is described below
commit 095f4fc2aae26ea0aa27e501596dc60e82f7a940
Author: Hongze Zhang <[email protected]>
AuthorDate: Wed Nov 20 13:30:49 2024 +0800
[CORE] Minor: Use lower case for Maven profile names (#8001)
---
pom.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 030828a327..8a2968b569 100644
--- a/pom.xml
+++ b/pom.xml
@@ -530,7 +530,7 @@
<!-- Profiles for different platforms -->
<profile>
- <id>Darwin-x86</id>
+ <id>darwin-x86</id>
<activation>
<os>
<family>mac</family>
@@ -543,7 +543,7 @@
</properties>
</profile>
<profile>
- <id>Darwin-aarch64</id>
+ <id>darwin-aarch64</id>
<activation>
<os>
<family>mac</family>
@@ -556,7 +556,7 @@
</properties>
</profile>
<profile>
- <id>Linux-amd64</id>
+ <id>linux-amd64</id>
<activation>
<os>
<family>Linux</family>
@@ -569,7 +569,7 @@
</properties>
</profile>
<profile>
- <id>Linux-aarch64</id>
+ <id>linux-aarch64</id>
<activation>
<os>
<family>Linux</family>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]