Skip to content

Commit

Permalink
Update to ivy 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
er1c committed Jan 10, 2022
1 parent 3601325 commit 12a8b0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ val amazonSDKVersion = "1.12.134"
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk-s3" % amazonSDKVersion,
"com.amazonaws" % "aws-java-sdk-sts" % amazonSDKVersion,
"org.apache.ivy" % "ivy" % "2.4.0",
"org.apache.ivy" % "ivy" % "2.5.0",
"org.scalatest" %% "scalatest" % "3.2.10" % Test
)

Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/fm/sbt/S3URLRepository.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import scala.collection.JavaConverters._

final class S3URLRepository extends URLRepository {
private[this] val s3: S3URLHandler = new S3URLHandler()
override def list(parent: String): List[_] = {

override def list(parent: String): List[String] = {
if (parent.startsWith("s3")) {
s3.list(new URL(parent)).map{ _.toExternalForm }.asJava
} else {
Expand Down

0 comments on commit 12a8b0c

Please sign in to comment.