-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
29 lines (19 loc) · 769 Bytes
/
README
File metadata and controls
29 lines (19 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Mongo views plugin for Play (2.1.5)
=====================================
1. make sure you have your Play installation properly working.
2. clone repository
$ git clone git@github.com:TPTeam/mongo_views_plugin.git
3. compile
{your_project_folder} $ play
[mongo-views-plugin] $ clean
[mongo-views-plugin] $ compile
4. publish
[mongo-views-plugin] $ publish-local
Congratulations! The plugin is now available into your {your_play_home}/repository/local/
Now add it to {your_project_folder}/project/Build.scala
$ nano {your_project_folder}/project/Build.scala
Add the following line
val main = play.Project(appName, appVersion, appDependencies).settings(
line resolvers += "Local Play Repository" at "{your_play_home}/repository/local/"
)
Done!