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

weibin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-graphar.git


The following commit(s) were added to refs/heads/main by this push:
     new d350bc8  feat(java): Set parent pom to apache (#482)
d350bc8 is described below

commit d350bc8bae1c309043e3b0a629e54c83ea279e0e
Author: Calvin Kirs <[email protected]>
AuthorDate: Wed May 15 20:24:32 2024 +0800

    feat(java): Set parent pom to apache (#482)
    
    ### Reason for this PR
    
    https://maven.apache.org/pom/asf/
    Apache Software Foundation Parent POM
    contains settings that are likely to be useful to any Apache project that 
is building and releasing code with Maven. By using this project as a parent, a 
project gets these settings.
    **If we have specific version requirements for certain plugins, we need to 
explicitly declare the corresponding versions in the project. Otherwise, it 
will default to the version specified in the parent POM.**
    ### What changes are included in this PR?
    - Add mailing list and License etc
---
 maven-projects/pom.xml | 66 +++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 52 insertions(+), 14 deletions(-)

diff --git a/maven-projects/pom.xml b/maven-projects/pom.xml
index c776396..beb592d 100644
--- a/maven-projects/pom.xml
+++ b/maven-projects/pom.xml
@@ -22,20 +22,58 @@
 <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>31</version>
+    </parent>
+    <groupId>org.apache.graphar</groupId>
+    <artifactId>graphar-root</artifactId>
+    <version>${graphar.version}</version>
+    <packaging>pom</packaging>
 
-  <groupId>org.apache.graphar</groupId>
-  <artifactId>graphar-root</artifactId>
-  <version>${graphar.version}</version>
-  <packaging>pom</packaging>
+    <name>Apache GraphAr Root POM</name>
+    <description>Apache GraphAr(Incubating) is an open source, standard data 
file format for graph data storage and retrieval.</description>
+    <url>https://graphar.apache.org/</url>
 
-  <name>Apache GraphAr Root POM</name>
-  <modules>
-    <module>java</module>
-    <module>spark</module>
-    <module>info</module>
-  </modules>
-
-  <properties>
-    <graphar.version>0.1.0-SNAPSHOT</graphar.version>
-  </properties>
+    <mailingLists>
+        <mailingList>
+            <name>Developer List</name>
+            <subscribe>[email protected]</subscribe>
+            <unsubscribe>[email protected]</unsubscribe>
+            <post>[email protected]</post>
+            
<archive>https://lists.apache.org/[email protected]</archive>
+        </mailingList>
+        <mailingList>
+            <name>Commits List</name>
+            <subscribe>[email protected]</subscribe>
+            <unsubscribe>[email protected]</unsubscribe>
+            <post>[email protected]</post>
+            
<archive>https://lists.apache.org/[email protected]</archive>
+        </mailingList>
+    </mailingLists>
+    <licenses>
+        <license>
+            <name>The Apache Software License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+        </license>
+    </licenses>
+<!--    <issueManagement>
+        <system>GitHub</system>
+        <url>https://github.com/apache/graphar/issues</url>
+    </issueManagement>
+    <scm>
+        <connection>scm:git:https://github.com/apache/graphar.git</connection>
+        
<developerConnection>scm:git:https://github.com/apache/graphar.git</developerConnection>
+        <tag>HEAD</tag>
+        <url>https://github.com/apache/graphar</url>
+    </scm>-->
+    <properties>
+        <graphar.version>0.1.0-SNAPSHOT</graphar.version>
+    </properties>
+    <modules>
+        <module>java</module>
+        <module>spark</module>
+        <module>info</module>
+    </modules>
 </project>


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

Reply via email to