mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 10:10:12 +00:00
* Externalize mysql. * Updates based on feedback (pauljamescleary). * Update publish settings for mysql. * WIP * Updates based on feedback (rebstar6). * Update reference to MySQL. * Use config file for API integration tests. * Fixed scalikejdbc version. * Add back application.conf * Be more specific with MySQL settings. * Update test config for MySQL module. * Updates based on feedback (rebstar6).
12 lines
367 B
Scala
12 lines
367 B
Scala
import sbt._
|
|
|
|
object Resolvers {
|
|
|
|
lazy val additionalResolvers = Seq(
|
|
"spray" at "http://repo.spray.io/",
|
|
"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"
|
|
)
|
|
}
|