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