CalvinKirs commented on code in PR #482: URL: https://github.com/apache/incubator-graphar/pull/482#discussion_r1600918124
########## 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>--> Review Comment: https://lists.apache.org/thread/1frk5f146pbzprj0d1ftf15o4z6v3ocs Do we have any plans to drop the "incubator" prefix? There's been an email thread discussing this in the incubator. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
