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:
397 bytes
|
Line | |
---|
1 | import sbt._ |
---|
2 | import Keys._ |
---|
3 | import PlayProject._ |
---|
4 | |
---|
5 | object ApplicationBuild extends Build { |
---|
6 | |
---|
7 | val appName = "comet-clock" |
---|
8 | val appVersion = "1.0" |
---|
9 | |
---|
10 | val appDependencies = Seq( |
---|
11 | // Add your project dependencies here, |
---|
12 | ) |
---|
13 | |
---|
14 | val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings( |
---|
15 | // Add your own project settings here |
---|
16 | ) |
---|
17 | |
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.