Guest User

Untitled

a guest
Jan 11th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. Server access Error: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target url=https://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt/0.13.13/ivys/ivy.xml
  2.  
  3. sbt.version=0.13.13
  4. template.uuid=fe200840-d458-4eeb-a289-d7aaef04c443
  5.  
  6. import play.sbt.PlayImport
  7. import sbt._
  8.  
  9. object Dependencies {
  10.  
  11. val scala = "2.11.8"
  12.  
  13. object thirdParty {
  14. val gson = "com.google.code.gson" % "gson" % "2.6.2"
  15. val postgresql = "org.postgresql" % "postgresql" % "9.4-1201-jdbc41"
  16. val h2database = "com.h2database" % "h2" % "1.4.187" % "test"
  17. val mockito = "org.mockito" % "mockito-core" % "1.8.5"
  18. val firebase = "com.google.firebase" % "firebase-server-sdk" % "3.0.1"
  19. val apkParser = "net.dongliu" % "apk-parser" % "2.1.6"
  20. val swagger = "io.swagger" %% "swagger-play2" % "1.5.3"
  21. val deadbolt = "be.objectify" %% "deadbolt-java" % "2.5.0"
  22. val jbcrypt = "org.mindrot" % "jbcrypt" % "0.3m"
  23. val flyway = "org.flywaydb" %% "flyway-play" % "3.1.0"
  24. val javassist = "org.javassist" % "javassist" % "3.20.0-GA"
  25. }
  26.  
  27. val playDependencies: Seq[ModuleID] = Seq(
  28. PlayImport.javaJpa,
  29. PlayImport.cache,
  30. PlayImport.javaWs,
  31. PlayImport.filters,
  32. thirdParty.gson,
  33. thirdParty.postgresql,
  34. thirdParty.h2database,
  35. thirdParty.mockito,
  36. thirdParty.firebase,
  37. thirdParty.apkParser,
  38. thirdParty.swagger,
  39. thirdParty.deadbolt,
  40. thirdParty.jbcrypt,
  41. thirdParty.flyway,
  42. thirdParty.javassist
  43. )
  44.  
  45. }
  46.  
  47. resolvers ++= DefaultOptions.resolvers(snapshot = true)
  48.  
  49. // The Play plugin
  50. addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.9")
  51.  
  52. addSbtPlugin("com.typesafe.sbt" % "sbt-play-ebean" % "3.2.0")
  53.  
  54. addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2")
Add Comment
Please, Sign In to add comment