-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (23 loc) · 1.26 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name := """postal"""
organization := "com.quatrolabs"
maintainer := "[email protected]"
version := "0.1.2"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.12.8"
libraryDependencies += guice
libraryDependencies += "com.amazonaws" % "aws-java-sdk" % "1.11.488"
libraryDependencies += "com.sun.mail" % "javax.mail" % "1.6.2"
libraryDependencies += "org.apache.commons" % "commons-email" % "1.5"
libraryDependencies += "org.bouncycastle" % "bcprov-jdk16" % "1.46"
libraryDependencies += "org.bouncycastle" % "bcprov-ext-jdk16" % "1.46"
libraryDependencies += "org.bouncycastle" % "bcprov-jdk15on" % "1.61"
libraryDependencies += "org.bouncycastle" % "bcpkix-jdk15on" % "1.61"
libraryDependencies += "org.apache.logging.log4j" % "log4j" % "2.11.2"
libraryDependencies += "org.jsoup" % "jsoup" % "1.11.3"
libraryDependencies += "org.postgresql" % "postgresql" % "42.2.8"
libraryDependencies += "org.apache.commons" % "commons-pool2" % "2.10.0"
libraryDependencies += "org.apache.tomcat" % "tomcat-jdbc" % "10.0.7"
libraryDependencies += "com.googlecode.usc" % "jdbcdslog" % "1.0.6.2"
libraryDependencies += "com.auth0" % "java-jwt" % "3.10.2"
includeFilter in (Assets, LessKeys.less) := "*.less"
excludeFilter in (Assets, LessKeys.less) := "_*.less"