Skip to content

Commit

Permalink
Bump to a more modern version of bnd
Browse files Browse the repository at this point in the history
Hoping to avoid an NPE I saw in the scala/scala build
while working towards Java 10 support.

My NPE looked the same as the one described in
gradle/gradle#2583, an issue
which was resolved by update bnd.

The artifact name seems to have changed in 2015
between 2.4.0 and 2.4.1

https://mvnrepository.com/artifact/biz.aQute.bnd/bndlib
https://mvnrepository.com/artifact/biz.aQute.bnd/biz.aQute.bndlib
  • Loading branch information
retronym committed Jul 18, 2018
1 parent cf60452 commit 2def5f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import sbt._
object Library {

// Versions
val bndVersion = "2.4.0"
val bndVersion = "4.0.0"
val specs2Version = "3.9.4"

// Libraries
val bndLib = "biz.aQute.bnd" % "bndlib" % bndVersion
val bndLib = "biz.aQute.bnd" % "biz.aQute.bndlib" % bndVersion
val specs2 = "org.specs2" %% "specs2-core" % specs2Version
}

Expand Down

0 comments on commit 2def5f4

Please sign in to comment.