Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
/.settings
dist
classes
lib/play-pdf.jar
samples-and-tests/pdf/tmp
samples-and-tests/pdf/log
samples-and-tests/pdf/modules
build.cmd
build.properties
*.iws
*.ipr
*iml
.classpath
.project
.settings
build-stamp
debian/files
debian/play-1.1-pdf-module-*
Expand Down
2 changes: 1 addition & 1 deletion conf/dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
self: play -> pdf 0.9
self: play -> pdf 0.10

require:
- play
11 changes: 1 addition & 10 deletions samples-and-tests/pdf/conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,12 @@ application.mode=dev
# If you deploy your application to several instances be sure to use the same key !
application.secret=ef0hrz5qauwlql87vocx02i7v9jpndw05y0t39snbj0l2agxj596ztqz3rrqvbpt

# Additional modules
# ~~~~~
# A module is another play! application. Add a line for each module you want
# to add to your application. Modules path are either absolutes or relative to
# the application root. They get loaded from top to bottom.
#
# Syntax: module.{name}={path}
module.pdf=../../


# i18n
# ~~~~~
# Define locales used by your application.
# You can then place localized messages in conf/messages.{locale} files
# application.langs=fr,en,ja
application.langs=en

# Date format
# ~~~~~
Expand Down
20 changes: 20 additions & 0 deletions samples-and-tests/pdf/conf/dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Application dependencies

require:
- play
- play -> pdf 0.10

repositories:
- playModules:
type: chain
using:
- playLocalModules:
type: local
descriptor: "${application.path}/../../../play--[module]/conf/dependencies.yml"
artifact: "${application.path}/../../../play--[module]"
contains:
- play -> pdf 0.10
- playContributedModules:
type: http
descriptor: "http://www.playframework.org/modules/repo/[module]/[revision]/dependencies.yml"
artifact: "http://www.playframework.org/modules/[module]-[revision].zip"
Loading