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

Maven central repo requirements #371

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion hefquin-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion hefquin-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion hefquin-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion hefquin-graphqlconnector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion hefquin-pgconnector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion hefquin-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<parent>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
</parent>

Expand Down
39 changes: 36 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
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>
<groupId>se.liu.ida.hefquin</groupId>
<artifactId>HeFQUIN</artifactId>
<artifactId>hefquin</artifactId>
<version>0.0.4-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>hefquin-base</module>
<module>hefquin-engine</module>
Expand All @@ -16,12 +16,44 @@
<module>hefquin-service</module>
</modules>

<!-- Project Meta Data -->
<name>HeFQUIN</name>
<description>HeFQUIN is a query federation engine for heterogeneous federations of graph data sources, including federations of knowledge graphs.</description>
<url>http://github.com/LiUSemWeb/hefquin</url>
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
<url>http://github.com/LiUSemWeb/hefquin</url>
<url>https://liusemweb.github.io/HeFQUIN/</url>

Or not?


<!-- License -->
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<!-- Developer Information -->
<developers>
<developer>
<name>Olaf Hartig</name>
<email>[email protected]</email>
<organization>Linköping University</organization>
<organizationUrl>https://liu.se/</organizationUrl>
</developer>
</developers>

<!-- SCM (Source Code Management) -->
<scm>
<connection>scm:git:git://github.com/LiUSemWeb/HeFQUIN.git</connection>
Copy link
Member

Choose a reason for hiding this comment

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

You have :git: twice here. Is that a typo?

<developerConnection>scm:git:ssh://github.com:LiUSemWeb/HeFQUIN.git</developerConnection>
<url>http://github.com/LiUSemWeb/HeFQUIN/tree/main</url>
Copy link
Member

Choose a reason for hiding this comment

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

Is there a reason why you didn't simply put http://github.com/LiUSemWeb/HeFQUIN? (I'm just curious)

Also, shouldn't it be https:// instead of http://?

</scm>

<!-- Properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>junit</groupId>
Expand All @@ -35,7 +67,8 @@
<version>2.0.5</version>
</dependency>
</dependencies>


<!-- Build -->
<build>
<plugins>
<plugin>
Expand Down