lejon / T-SNE-Java

Pure Java implementation of Van Der Maaten and Hinton's t-sne clustering algorithm
197 stars 60 forks source link

Correct Maven Dependency #24

Open hageldave opened 2 years ago

hageldave commented 2 years ago

Hey, thanks for this great resource of t-SNE implementations!

Its great that you also provide a maven dependency through jitpack, however, if you handed out the correct dependency in your readme that corresponds to this project (not the generic where I have to fill in the details) that would be amazing!

For your convencience:

<dependency>
   <groupId>com.github.lejon</groupId>
   <artifactId>T-SNE-Java</artifactId>
   <version>v2.6.3</version>
</dependency>
kaismh commented 2 years ago

The above dependency is from scijava repository you need to add repository in your pom.xml ex:

<repositories>
    <repository>
        <id>scijava.public</id>
        <url>https://maven.scijava.org/content/groups/public</url>
    </repository>
</repositories>
hageldave commented 2 years ago

@kaismh well, as stated on the project page of this repo, the dependency is from

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

but scijava.org also features it as I just learned. Thanks for pointing this out.

mbofb commented 9 months ago

Thanks, for this great library. Could we get a up to date maven release, with explicit dependencies (not single jar) please?