Gleethos / neureka

A platform independent tensor library with autograd for the JVM
https://gleethos.github.io/neureka/index.html
MIT License
69 stars 1 forks source link

Upload to maven central #24

Closed jalexcole closed 8 months ago

jalexcole commented 9 months ago

Have this project uploaded into maven central for easy use.

Gleethos commented 9 months ago

Maybe we are not talking about the same maven, but I have already uploaded to maven through sonatype, which you can find here or here.

So you can then easily add Neureka as dependency in the config of your build system of choice:

<dependency>
  <groupId>com.github.gleethos</groupId>
  <artifactId>neureka</artifactId>
  <version>1.0.0</version>
</dependency>

or Gradle

implementation 'com.github.gleethos:neureka:1.0.0'

or Groovy Grape

@Grapes(
  @Grab(group='com.github.gleethos', module='neureka', version='1.0.0')
)

...etc

jalexcole commented 8 months ago

I found it.