File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
examples/idea-examples/titanic Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ allprojects {
42
42
jvmTarget = " 1.8"
43
43
}
44
44
}
45
+
46
+ tasks.withType<JavaCompile > {
47
+ sourceCompatibility = JavaVersion .VERSION_1_8 .toString()
48
+ targetCompatibility = JavaVersion .VERSION_1_8 .toString()
49
+ }
45
50
}
46
51
47
52
group = " org.jetbrains.kotlinx"
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ application.mainClass.set("org.jetbrains.kotlinx.dataframe.examples.titanic.ml.T
12
12
13
13
dependencies {
14
14
implementation(project(" :core" ))
15
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-api:0.3 .0" )
16
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.3 .0" )
15
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-api:0.4 .0" )
16
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.4 .0" )
17
17
}
18
18
19
19
// Make IDE aware of the generated code:
You can’t perform that action at this time.
0 commit comments