scala - SBT multiproject can't locate logback extension -
i have multi project sbt build common
project contains logback related extension, while logback.xml placed in global resource folder.
i have structure below, when running application (app
) not applying logbackcompositeconverterex
.
how logback compositeconverter affect depending projects @ runtime?
build.sbt |- common |-- src |--- main |---- scala |----- logbackcompositeconverterex.scala // not seem applied |---- resources |- feature |-- src |--- main |---- scala |---- resources |- app |-- src |--- main |---- scala |---- resources |----- logback.xml // can in common?
to answer question, yes, can move logback.xml in common, resources folder. i'm not sure fix issue. there way share project privately, or @ least build.sbt, able check how have defined dependencies , aggregation of submodules?
Comments
Post a Comment