mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
* Updating dependencies Updated almost all dependencies to current. There were some issues with akka-http 10.1.11 so I stayed with 10.1.10 for the time being. Func tests passed locally and manual review of the UI looks to be good Significant changes are: - `pureconfig` - this update had breaking syntax, so I had to update everywhere we use pureconfig. Functionally it is the same, just different syntax - `scalatest` - this was a big change, as scalatest has refactored out things like Mockito and scalacheck. Many imports changed. - `Java11` - formally moved everything to java 11. This required some new dependencies like `javax.activation` and `java.xml.bind` * Updating travis to JDK 11 * Finishing JDK 11 update In order to update to JDK 11, needed to modify several docker things. Removed timeout test that was causing issues as timeout tests here are not good for running in travis.
11 lines
309 B
Scala
11 lines
309 B
Scala
import sbt._
|
|
|
|
object Resolvers {
|
|
|
|
lazy val additionalResolvers = Seq(
|
|
"dnvriend at bintray" at "https://dl.bintray.com/dnvriend/maven",
|
|
"bintray" at "https://jcenter.bintray.com",
|
|
"DynamoDBLocal" at "https://s3-us-west-2.amazonaws.com/dynamodb-local/release"
|
|
)
|
|
}
|