forked from akouthoofd/GenericSocialAppWithPlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
22 lines (15 loc) · 795 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := """socialapp"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"mysql" % "mysql-connector-java" % "5.1.40",
"com.google.code.gson" % "gson" % "2.8.0"
)
// Compile the project before generating Eclipse files, so that generated .scala or .class files for views and routes are present
// EclipseKeys.preTasks := Seq(compile in Compile)
// EclipseKeys.projectFlavor := EclipseProjectFlavor.Java // Java project. Don't expect Scala IDE
// EclipseKeys.createSrc := EclipseCreateSrc.ValueSet(EclipseCreateSrc.ManagedClasses, EclipseCreateSrc.ManagedResources) // Use .class files instead of generated .scala files for views and routes