-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved group/module/package to io.github.zabuzard, added metadata to pom
- Loading branch information
Showing
10 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,37 @@ | |
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>org.zabuzard.closy</groupId> | ||
<groupId>io.github.zabuzard.closy</groupId> | ||
<artifactId>closy</artifactId> | ||
<version>1.1</version> | ||
<version>1.2</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Closy</name> | ||
<description>Closy is a library that provides fast and generic solutions for nearest neighbor search (NNS) | ||
</description> | ||
<url>https://github.com/Zabuzard/Closy</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU General Public License v3.0</name> | ||
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Daniel Tischner</name> | ||
<email>[email protected]</email> | ||
<organization>GitHub/Zabuzard</organization> | ||
<organizationUrl>https://github.com/Zabuzard</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/Zabuzard/Closy.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:Zabuzard/Closy.git</developerConnection> | ||
<url>http://github.com/Zabuzard/Closy/tree/master</url> | ||
</scm> | ||
|
||
<properties> | ||
<maven.compiler.source>9</maven.compiler.source> | ||
|
2 changes: 1 addition & 1 deletion
2
...a/org/zabuzard/closy/external/Metric.java → ...ithub/zabuzard/closy/external/Metric.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../external/NearestNeighborComputation.java → .../external/NearestNeighborComputation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...external/NearestNeighborComputations.java → ...external/NearestNeighborComputations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...zabuzard/closy/external/package-info.java → ...zabuzard/closy/external/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** | ||
* Public interface for nearest neighbor computations offered by Closy. | ||
*/ | ||
package org.zabuzard.closy.external; | ||
package io.github.zabuzard.closy.external; |
6 changes: 3 additions & 3 deletions
6
...rg/zabuzard/closy/internal/CoverTree.java → ...ub/zabuzard/closy/internal/CoverTree.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/org/zabuzard/closy/internal/Node.java → .../github/zabuzard/closy/internal/Node.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...zabuzard/closy/internal/package-info.java → ...zabuzard/closy/internal/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** | ||
* Internal interface for nearest neighbor computations offered by Closy, contains the underlying implementation. | ||
*/ | ||
package org.zabuzard.closy.internal; | ||
package io.github.zabuzard.closy.internal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* Closy is a library that provides fast and generic solutions for nearest neighbor search (NNS). | ||
*/ | ||
module org.zabuzard.closy { | ||
exports org.zabuzard.closy.external; | ||
module io.github.zabuzard.closy { | ||
exports io.github.zabuzard.closy.external; | ||
} |