This is an automated email from the ASF dual-hosted git repository.
weitingchen 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 ad6df0466 update profile for apache release (#6349)
ad6df0466 is described below
commit ad6df0466831ee935979a8b763d604ca95606d70
Author: Wei-Ting Chen <[email protected]>
AuthorDate: Fri Jul 5 22:03:30 2024 +0800
update profile for apache release (#6349)
---
pom.xml | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 62 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index f12469317..4f8bd3e14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,6 +21,18 @@
<name>Gluten Parent Pom</name>
<url>https://github.com/apache/incubator-gluten.git</url>
+ <description>Apache Gluten(incubating)</description>
+
+ <organization>
+ <name>Apache</name>
+ <url>http://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>
+ </scm>
<licenses>
<license>
@@ -415,6 +427,55 @@
<module>gluten-ut</module>
</modules>
</profile>
+ <profile>
+ <!-- this profile for apache release. -->
+ <id>apache-release</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+ <dryRun>false</dryRun>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <configuration>
+ <skip>false</skip>
+ <interactive>true</interactive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>source-release-assembly</id>
+ <phase>none</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+ <appendAssemblyId>true</appendAssemblyId>
+ <descriptors>
+ <descriptor>
+ src/assembly/source-assembly.xml
+ </descriptor>
+ </descriptors>
+ <finalName>apache-gluten-${project.version}</finalName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<dependencyManagement>
@@ -695,7 +756,7 @@
</goals>
<configuration>
<classifier>${scala.binary.version}</classifier>
- <classifier>${sparkbundle.version}</classifier>
+ <classifier>${sparkbundle.version}</classifier>
</configuration>
</execution>
</executions>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]