-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (22 loc) · 1.05 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
29
30
31
32
33
34
35
36
37
38
39
40
41
name := "cadastro_pessoas"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs,
"org.postgresql" % "postgresql" % "9.4-1201-jdbc41"
)
libraryDependencies += filters
libraryDependencies += "net.sf.jasperreports" % "jasperreports" % "6.0.0"
libraryDependencies += "commons-io" % "commons-io" % "2.4"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.35"
libraryDependencies += "org.jsoup" % "jsoup" % "1.8.3"
libraryDependencies += "com.googlecode.json-simple" % "json-simple" % "1.1"
libraryDependencies += "com.typesafe.play" %% "play-mailer" % "2.4.0"
resolvers += "Jasper" at "http://jasperreports.sourceforge.net/maven2"
resolvers += "olap4j" at "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts"
resolvers += "BeDataDriven" at "https://nexus.bedatadriven.com/content/groups/public/"
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/releases/"