Play Framework 1.2:如何添加自定义模块依赖项

时间:2011-05-02 11:48:15

标签: java dependencies playframework

我在迁移到Play 1.2时有点迷失。我们有一套定制 我们的应用中的模块。在Play 1.1.1中,我们使用了这种结构:

/root/
  /module1
  /module2
  ...
  /moduleN
  /main app

application.conf将模块引用为相对路径(../ 模块1)

我怎样才能在Play 1.2中做同样的事情?我知道我应该使用 dependencies.yml 文件,但无法找到有关此主题的任何信息 官方文件。

提前致谢

修改 Google小组中有很多混合信息,但this post解决了这些问题。

我将其复制到此处,以便为在SO中搜索此问题的人提供未来参考:

  

好的,使用master中的最新版本,这里是必需的dependencies.yml   内联评论:

# Application dependencies

# Notes:
#   play is an alias for play -> play $currentVersion
#   play -> crud is an alias for play -> crud $currentVersion
#   play -> secure is an alias for play -> secure $currentVersion
#   Modules from the main repository use 'play' as organisation
#

require:
    - play
    - play -> crud
    - play -> secure
    - play -> recaptcha 1.02
    - play -> greenscript 1.2b
    - crionics -> cms 1.0
    - ugot -> widgets 1.0
    - org.markdownj -> markdownj 0.3.0-1.0.2b4

repositories:

    - Scala Tools:
        type:       iBiblio
        root:       http://scala-tools.org/repo-releases/
        contains:
            - org.markdownj

    - My modules:
        type:       local
        artifact:   /somewhere/on/your/disk/[organisation]/[module]-[revision]

        # This folder must contain
        # /somewhere/on/your/disk/crionics/cms-1.0
        # /somewhere/on/your/disk/ugot/widgets-1.0

        contains:
            - ugot
            - crionics 

注意:请注意,如果您对本地存储库设置执行了错误,则在运行 play deps 时可能会完全删除项目(完全!)。是的,它发生在我身上:(

1 个答案:

答案 0 :(得分:0)

要将信息提供给不是Play google群组订阅者的其他人,要查找此类信息,请继续玩google群组https://groups.google.com/group/play-framework并搜索“module + local”,您应该找到一些线索..