2013-06-27 53 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]"