We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977106e commit fb271b8Copy full SHA for fb271b8
build.gradle.kts
@@ -23,7 +23,7 @@ buildscript {
23
24
allprojects {
25
group = "fr.acinq.secp256k1"
26
- version = "0.17.0"
+ version = "0.17.1-SNAPSHOT"
27
28
repositories {
29
google()
jni/jvm/build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+
3
plugins {
4
kotlin("jvm")
5
id("org.jetbrains.dokka")
@@ -31,6 +33,16 @@ dependencies {
31
33
api(project(":jni"))
32
34
}
35
36
+kotlin {
37
+ compilerOptions {
38
+ jvmTarget.set(JvmTarget.JVM_1_8)
39
+ }
40
+}
41
42
+java {
43
+ sourceCompatibility = JavaVersion.VERSION_1_8
44
45
46
publishing {
47
publications {
48
create<MavenPublication>("jvm") {
0 commit comments