Skip to content

Commit 7756e7f

Browse files
yaooqinnyikf
authored andcommitted
[INFRA] Make Gluten POM derive from Apache Software Foundation Parent POM (apache#8930)
1 parent 7bfadb8 commit 7756e7f

File tree

2 files changed

+40
-14
lines changed

2 files changed

+40
-14
lines changed

pom.xml

+37-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Licensed under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License.
5-
You may obtain a copy of the License at
6-
http://www.apache.org/licenses/LICENSE-2.0
7-
Unless required by applicable law or agreed to in writing, software
8-
distributed under the License is distributed on an "AS IS" BASIS,
9-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10-
See the License for the specific language governing permissions and
11-
limitations under the License.
12-
-->
3+
~ Licensed to the Apache Software Foundation (ASF) under one or more
4+
~ contributor license agreements. See the NOTICE file distributed with
5+
~ this work for additional information regarding copyright ownership.
6+
~ The ASF licenses this file to You under the Apache License, Version 2.0
7+
~ (the "License"); you may not use this file except in compliance with
8+
~ the License. You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
1319
<project xmlns="http://maven.apache.org/POM/4.0.0"
1420
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1521
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1622
<modelVersion>4.0.0</modelVersion>
23+
<parent>
24+
<groupId>org.apache</groupId>
25+
<artifactId>apache</artifactId>
26+
<version>33</version>
27+
</parent>
1728
<groupId>org.apache.gluten</groupId>
1829
<artifactId>gluten-parent</artifactId>
1930
<version>1.4.0-SNAPSHOT</version>
@@ -25,19 +36,19 @@
2536

2637
<organization>
2738
<name>Apache</name>
28-
<url>http://gluten.apache.org</url>
39+
<url>https://gluten.apache.org</url>
2940
</organization>
3041

3142
<scm>
3243
<connection>scm:git:git://github.com/apache/incubator-gluten.git</connection>
3344
<developerConnection>scm:git:ssh://github.com:apache/incubator-gluten.git</developerConnection>
34-
<url>http://github.com/apache/incubator-gluten/tree/main</url>
45+
<url>https://github.com/apache/incubator-gluten/tree/main</url>
3546
</scm>
3647

3748
<licenses>
3849
<license>
3950
<name>The Apache Software License, Version 2.0</name>
40-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
51+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
4152
</license>
4253
</licenses>
4354

@@ -1346,6 +1357,11 @@
13461357
</compilerArgs>
13471358
</configuration>
13481359
</plugin>
1360+
<plugin>
1361+
<groupId>org.apache.maven.plugins</groupId>
1362+
<artifactId>maven-surefire-plugin</artifactId>
1363+
<version>3.3.0</version>
1364+
</plugin>
13491365
<plugin>
13501366
<groupId>org.scalatest</groupId>
13511367
<artifactId>scalatest-maven-plugin</artifactId>
@@ -1637,6 +1653,14 @@
16371653
</execution>
16381654
</executions>
16391655
</plugin>
1656+
<plugin>
1657+
<groupId>org.apache.maven.plugins</groupId>
1658+
<artifactId>maven-surefire-plugin</artifactId>
1659+
<configuration>
1660+
<skipTests>true</skipTests>
1661+
</configuration>
1662+
</plugin>
1663+
16401664
</plugins>
16411665
</build>
16421666
</project>

tools/qualification-tool/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@
154154
<plugin>
155155
<groupId>org.apache.maven.plugins</groupId>
156156
<artifactId>maven-surefire-plugin</artifactId>
157-
<version>2.21.0</version>
157+
<configuration>
158+
<skipTests>false</skipTests>
159+
</configuration>
158160
</plugin>
159161

160162
<plugin>

0 commit comments

Comments
 (0)