source: Dev/branches/play-2.0.1/samples/scala/computer-database/project/Build.scala @ 322

Last change on this file since 322 was 322, checked in by hendrikvanantwerpen, 13 years ago

Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.

File size: 365 bytes
Line 
1import sbt._
2import Keys._
3import PlayProject._
4
5object ApplicationBuild extends Build {
6
7    val appName         = "computer-database"
8    val appVersion      = "1.0"
9
10    val appDependencies = Nil
11
12    val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
13      // Add your own project settings here     
14    )
15
16}
17           
Note: See TracBrowser for help on using the repository browser.