We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db729d0 commit 9cc469fCopy full SHA for 9cc469f
build.gradle.kts
@@ -9,6 +9,10 @@ plugins {
9
group = "com.github.hauner.openapi"
10
version = "1.0.0.M3"
11
12
+tasks.compileKotlin {
13
+ kotlinOptions.jvmTarget = "1.8"
14
+}
15
+
16
repositories {
17
mavenCentral()
18
maven {
@@ -24,8 +28,7 @@ project.ext {
24
28
}
25
29
26
30
dependencies {
27
-// implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
- implementation(kotlin("stdlib"))
31
+ implementation(kotlin("stdlib-jdk8"))
32
33
implementation("io.swagger.parser.v3:swagger-parser:2.0.19") {
34
exclude(group = "io.swagger.parser.v3", module = "swagger-parser-v2-converter")
0 commit comments