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:
422 bytes
|
Line | |
---|
1 | import sbt._ |
---|
2 | import Keys._ |
---|
3 | import PlayProject._ |
---|
4 | |
---|
5 | object ApplicationBuild extends Build { |
---|
6 | |
---|
7 | val appName = "computer-database-jpa" |
---|
8 | val appVersion = "1.0" |
---|
9 | |
---|
10 | val appDependencies = Seq( |
---|
11 | "org.hibernate" % "hibernate-entitymanager" % "3.6.9.Final" |
---|
12 | ) |
---|
13 | |
---|
14 | val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings( |
---|
15 | ebeanEnabled := false |
---|
16 | ) |
---|
17 | |
---|
18 | } |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.