子項目特定日誌配置我有一個SBT構建具有以下結構:SBT:經由logback.xml資源
lazy val Core = project
lazy val Server = project dependsOn(Core)
在覈心,我有一個命令行實用程序,記錄使用的logback。在Server中,我也使用logback進行日誌記錄,但是我需要一個來自Core中的logback.xml配置不同的。
我怎麼能有兩個logback.xml資源,每個項目的方式,在服務器只有一個logback.xml資源在classpath中。 (默認情況下,dependsOn也將Core的logback.xml放入Server項目的類路徑中,導致logback警告我關於項目Server中的多個logback.xml資源)。
我主要關心的是「sbt run」的類路徑。
Lateron,我也在尋找從封裝瓶子中排除資源的方法,但它看起來像這樣可以實現:How to exclude resources during packaging with SBT but not during testing。
您是否需要jar文件中的logback.xml文件? –
不,logback.xml文件應該保存在jar文件之外(因爲用戶可能想編輯它們)。 – Georg
你想包含logback.xml嗎?如果沒有,請按照http://www.scala-sbt.org/0.13/docs/Howto-Customizing-Paths.html#Change+the+default+resource+directory中所述從src/main/resources中移動它。 –