Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(java): Set parent pom to apache #482

Merged
merged 1 commit into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 52 additions & 14 deletions maven-projects/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>-->
Comment on lines +61 to +70
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Thanks for bringing this information to us. Are there specified steps or guidelines that we should follow in response to this?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically, related to infrastructure needs to be handled by the INFRA team. If we're planning to drop the "incubator" prefix, we'll just need to submit a ticket to the INFRA JIRA.
https://issues.apache.org/jira/projects/INFRA/summary

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typically, related to infrastructure needs to be handled by the INFRA team. If we're planning to drop the "incubator" prefix, we'll just need to submit a ticket to the INFRA JIRA. https://issues.apache.org/jira/projects/INFRA/summary

Thanks! I'll consult with other members and make a decision.

<properties>
<graphar.version>0.1.0-SNAPSHOT</graphar.version>
</properties>
<modules>
<module>java</module>
<module>spark</module>
<module>info</module>
</modules>
</project>