komputing / KHash

Different hash functions in Kotlin (SHA3 with Keccak and Shake variants, sha256, ripemd160)
MIT License
54 stars 10 forks source link

Jitpack Build not working for Kotlin Multiplatform #13

Closed steve-the-edwards closed 5 years ago

steve-the-edwards commented 5 years ago

    ...
    maven { url 'https://jitpack.io' }
}
...
kotlin {
      sourceSets {
        commonMain {
            dependencies {
                implementation "org.github.komputing:KHash:$khash_version"
            }
        }
        jvmMain {
            dependencies {
                implementation "org.github.komputing:KHash:$khash_version"
            }
        }
        iosMain {
            dependencies {
                implementation "org.github.komputing:KHash:$khash_version"
            }
        }

    }
}```

\--- org.github.komputing:KHash:0.8 FAILED

Cannot fetch dependency
steve-the-edwards commented 5 years ago

Tried $khash_version of 0.8, 1.0.0-RC1 etc

steve-the-edwards commented 5 years ago

Closing issue - was because org.github instead of com.github (which is correct)