From f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a Mon Sep 17 00:00:00 2001 From: Christopher Vogt Date: Thu, 17 Mar 2016 22:32:41 -0400 Subject: fixed previously too naive pom inheritance logic to properly handle properties and dependencyManagement pom inheritance features pair-coded with @chavxo --- stage1/logger.scala | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stage1/logger.scala') diff --git a/stage1/logger.scala b/stage1/logger.scala index b1d80a3..5e8858a 100644 --- a/stage1/logger.scala +++ b/stage1/logger.scala @@ -29,6 +29,7 @@ case class Logger(enabledLoggers: Set[String]) { final def resolver(msg: => String) = logGuarded(names.resolver, msg) final def lib(msg: => String) = logGuarded(names.lib, msg) final def test(msg: => String) = logGuarded(names.test, msg) + final def pom(msg: => String) = logGuarded(names.pom, msg) private object names{ val stage1 = "stage1" @@ -39,6 +40,7 @@ case class Logger(enabledLoggers: Set[String]) { val composition = "composition" val lib = "lib" val test = "test" + val pom = "pom" } private def logGuarded(name: String, msg: => String) = { -- cgit v1.2.3