This is an automated email from the ASF dual-hosted git repository.

philo 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 82e4eee8c7 [INFRA] Make Gluten POM derive from Apache Software 
Foundation Parent POM (#8930)
82e4eee8c7 is described below

commit 82e4eee8c7e61048365dede2a98a45ceafe828b4
Author: Kent Yao <[email protected]>
AuthorDate: Wed Mar 12 10:13:14 2025 +0800

    [INFRA] Make Gluten POM derive from Apache Software Foundation Parent POM 
(#8930)
---
 pom.xml                          | 50 +++++++++++++++++++++++++++++-----------
 tools/qualification-tool/pom.xml |  4 +++-
 2 files changed, 40 insertions(+), 14 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7399b9938b..23558629a2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,19 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-      http://www.apache.org/licenses/LICENSE-2.0
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~ contributor license agreements.  See the NOTICE file distributed with
+  ~ this work for additional information regarding copyright ownership.
+  ~ The ASF licenses this file to You under the Apache License, Version 2.0
+  ~ (the "License"); you may not use this file except in compliance with
+  ~ the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
 <project xmlns="http://maven.apache.org/POM/4.0.0";
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
   <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>33</version>
+  </parent>
   <groupId>org.apache.gluten</groupId>
   <artifactId>gluten-parent</artifactId>
   <version>1.4.0-SNAPSHOT</version>
@@ -25,19 +36,19 @@
 
   <organization>
     <name>Apache</name>
-    <url>http://gluten.apache.org</url>
+    <url>https://gluten.apache.org</url>
   </organization>
 
   <scm>
     
<connection>scm:git:git://github.com/apache/incubator-gluten.git</connection>
     
<developerConnection>scm:git:ssh://github.com:apache/incubator-gluten.git</developerConnection>
-    <url>http://github.com/apache/incubator-gluten/tree/main</url>
+    <url>https://github.com/apache/incubator-gluten/tree/main</url>
   </scm>
 
   <licenses>
     <license>
       <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
     </license>
   </licenses>
 
@@ -1346,6 +1357,11 @@
             </compilerArgs>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>3.3.0</version>
+        </plugin>
         <plugin>
           <groupId>org.scalatest</groupId>
           <artifactId>scalatest-maven-plugin</artifactId>
@@ -1637,6 +1653,14 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skipTests>true</skipTests>
+        </configuration>
+      </plugin>
+
     </plugins>
   </build>
 </project>
diff --git a/tools/qualification-tool/pom.xml b/tools/qualification-tool/pom.xml
index d59c4a6c2d..61aafd2a7b 100644
--- a/tools/qualification-tool/pom.xml
+++ b/tools/qualification-tool/pom.xml
@@ -154,7 +154,9 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.21.0</version>
+        <configuration>
+          <skipTests>false</skipTests>
+        </configuration>
       </plugin>
 
       <plugin>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to