Skip to content

Commit

Permalink
Moved group/module/package to io.github.zabuzard, added metadata to pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Zabuzard committed Feb 12, 2021
1 parent eca56cb commit 86ddf09
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Maven:

```xml
<dependency>
<groupId>org.zabuzard.closy</groupId>
<groupId>io.github.zabuzard.closy</groupId>
<artifactId>closy</artifactId>
<version>1.1</version>
<version>1.2</version>
</dependency>
```

Expand Down
32 changes: 30 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.zabuzard.closy.external;
package io.github.zabuzard.closy.external;

/**
* Interface for a metric defined on a given type of objects.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.zabuzard.closy.external;
package io.github.zabuzard.closy.external;

import java.util.Collection;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.zabuzard.closy.external;
package io.github.zabuzard.closy.external;

import org.zabuzard.closy.internal.CoverTree;
import io.github.zabuzard.closy.internal.CoverTree;

/**
* Provides utility methods for nearest neighbor computations.
Expand Down
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;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.zabuzard.closy.internal;
package io.github.zabuzard.closy.internal;

import org.zabuzard.closy.external.Metric;
import org.zabuzard.closy.external.NearestNeighborComputation;
import io.github.zabuzard.closy.external.Metric;
import io.github.zabuzard.closy.external.NearestNeighborComputation;

import java.util.*;
import java.util.stream.Collectors;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.zabuzard.closy.internal;
package io.github.zabuzard.closy.internal;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
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;
4 changes: 2 additions & 2 deletions src/main/java/module-info.java
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;
}

0 comments on commit 86ddf09

Please sign in to comment.