aboutsummaryrefslogtreecommitdiff
path: root/stage1/logger.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-17 22:32:41 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-17 22:32:41 -0400
commitf9ce0472aea0d6f646e8f7487f63ab8c4e42d22a (patch)
tree0b0f2e172252ea97a5c658d807c8591006308c9f /stage1/logger.scala
parent561928808939d87f2f8a5db0caa8b6e9e2931963 (diff)
downloadcbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.tar.gz
cbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.tar.bz2
cbt-f9ce0472aea0d6f646e8f7487f63ab8c4e42d22a.zip
fixed previously too naive pom inheritance logic to properly handle properties and dependencyManagement pom inheritance features
pair-coded with @chavxo
Diffstat (limited to 'stage1/logger.scala')
-rw-r--r--stage1/logger.scala2
1 files changed, 2 insertions, 0 deletions
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) = {