Skip to content

Commit

Permalink
#74: Fixed incompatibility with scala 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko committed Mar 23, 2020
1 parent 57da0db commit 380ea53
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.exasol.cloudetl.kinesis

import java.io.File
import java.nio.ByteBuffer
import java.nio.file.Path
import java.nio.file.Paths
import java.sql.ResultSet

import com.exasol.cloudetl.data.Row
Expand Down Expand Up @@ -47,7 +47,7 @@ trait KinesisAbstractIntegrationTest extends AnyFunSuite with BeforeAndAfterAll
}

private[this] def uploadJarToBucket(assembledJarName: String): Unit = {
val pathToJar = Path.of("target", "scala-2.12", assembledJarName)
val pathToJar = Paths.get("target", "scala-2.12", assembledJarName)
exasolContainer.getDefaultBucket.uploadFile(pathToJar, assembledJarName)
}

Expand Down

0 comments on commit 380ea53

Please sign in to comment.