程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> IntelliJ IDEA 中module的dependencies是其它module時的注意事項,intellijideamodule

IntelliJ IDEA 中module的dependencies是其它module時的注意事項,intellijideamodule

編輯:JAVA綜合教程

IntelliJ IDEA 中module的dependencies是其它module時的注意事項,intellijideamodule


Dependencies on other modules

If a module (module A) depends on another module (module B), IntelliJ IDEA assumes that:

  • The sources of module A depend on the sources in module B and don't depend on its test sources.
  • The test sources of module A depend on the sources and the test sources of module B.

 

也就是說,源代碼依賴源代碼,測試代碼依賴測試代碼

 

另外,如果要把一個library打包進一個artifact中,這個library必需是project level以上的。

如果把一個library中的某些部分(可以是類或者文件夾,甚至是archive裡的文件)標記為exclude。但是這樣僅僅是把這些內容用作輸入時的提示,但是在運行或者編譯時,這些內容還是有效的。這麼做的目的是為了讓IDE更加流暢。原文如下:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved