breandan / kotlingrad

🧩 Shape-Safe Symbolic Differentiation with Algebraic Data Types
https://breandan.net/public/masters_thesis.pdf#page=49
Apache License 2.0
515 stars 21 forks source link

Jar file of 0.3.5 not published on jitpack #16

Closed bjonnh closed 3 years ago

bjonnh commented 3 years ago

See:

https://jitpack.io/com/github/breandan/kotlingrad/0.3.5/

Compared to:

https://jitpack.io/com/github/breandan/kotlingrad/0.3.4

breandan commented 3 years ago

Hi Jon, thank you for reporting this issue! JitPack should now include the JARs properly as of version 0.3.7.

edit: Please note we do not publish fat JARs anymore, so if you want to try it, you will need to add the following repositories to your build.gradle.kts file, this should be fixed in the next release:

repositories {
    mavenCentral()
    jcenter()
    maven("https://jitpack.io")
    maven("https://dl.bintray.com/mipt-npm/dev")
    maven("https://dl.bintray.com/hotkeytlt/maven")
    maven("https://dl.bintray.com/kotlin/kotlin-eap")
    maven("https://dl.bintray.com/egor-bogomolov/astminer")
    maven("https://maven.jzy3d.org/releases")
    maven("https://jetbrains.bintray.com/lets-plot-maven")
    maven("http://logicrunch.research.it.uu.se/maven/")
    maven("https://clojars.org/repo")
}

dependencies {
    implementation("com.github.breandan:kotlingrad:0.3.7")
}