2013-06-27 51 views
0

我的游戏应用程序出现问题,我的游戏无法检测到我创建的模块。 这是我的应用程序依赖如何配置依赖关系播放框架1.2.5?

# Application dependencies 

require: 
    - play 
    - tesModule -> tesModule 1.0 
    repositories: 
    - My modules: 
     type:  local 
     artifact: ${application.path}/../[module]-[revision] 
     contains: 
      - tesModule -> * 

后我运行命令play dependencies命令提示符告诉我有这样的

~ 
~ ***************************************************************************** 
~ WARNING: These dependencies are missing, your application may not work properly 
(use --verbose for details), 
~ 
~  tesModule->tesModule 1.0 
~ ***************************************************************************** 
~ 
~ Some dependencies are still missing. 
~ 

我的应用程序和我在同一个文件夹模块缺少的依赖关系。这有什么问题,我的游戏无法检测到我的模块,我使用java语言来开发我的应用程序。在游戏框架中帮助我新的,并为我的坏英语感到抱歉。

回答

1

不要把模块版本在你的本地回购

下面是一个例子

 - localModules: 
      type: local 
      descriptor: "${application.path}/../[module]/conf/dependencies.yml" 
      artifact: "${application.path}/../[module]"