2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/project/Resolvers.scala
Michael Ly bc63c79e09
Externalize MySQL module (#205)
* 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).
2018-09-24 15:37:58 -04:00

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"
)
}