Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

🌳 sbt-one-log resolve the logging dependencies chaos in your development, just make logging work as you expect and follow the best practice, automatically.

License

foldright/sbt-one-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

sbt-one-log plugin

Build Status GitHub release GitHub Stars GitHub Forks License

sbt-one-log is a sbt plugin make logging dependency easy.

sbt-one-log plugin provides you an easy way to manage the logging dependency (avoid the logging lib hell):

  • Resolve the logging dependencies chaos in your development.
  • Just make logging work as you expect and follow the best practice, automatically.
  • Keep the dependency available when generate pom.xml.


πŸ”§ Features

  • Automatic uniform your logging dependencies, current support slf4j and logback, other logging lib will be bridged to slf4j.
  • scala-logging support, if you don't need it, you can turn off the scala-logging support.
  • Task generateLogbackXML to help you generate the logback.xml and logback-test.xml.

πŸ‘₯ Usage

For sbt 0.13.5 or above, if you use sbt under 0.13.5, please use : 0.1.3

Add sbt-one-log plugin to the sbt configuration:

Add plugin in project/plugins.sbt

addSbtPlugin("com.zavakid.sbt" % "sbt-one-log" % "1.0.1")

Using build.sbt

// oneLogSettings will add libDependencies and resolvers
lazy val yourProject = (project in file(".")).enablePlugins(SbtOneLog)

Now sbt-one-log will add the logging dependency and override other logging lib automatically.

Using project/Build.scala

important: oneLogSettings must position after libraryDependencies.

import sbt._
import sbt.Keys._
import com.zavakid.sbt._

object Build extends sbt.Build {

  // add oneLogSettings to your settings
  lazy val root = Project(
    id = "example",
    base = file(.),
  ).enablePlugins(SbtOneLog)

  //...
  //other settings
  //...
}

Now everything is OK.

🚚 Release notes

See sbt-one-log release notes.

✨ Why sbt-one-log

Scala can leverage lots of perfect Java lib, but it's chaotic with the logging libs in Java world.

Looking at the logging libs below: πŸ˜•

  • java.util.logging
  • commons-logging
  • commons-logging-api
  • log4j
  • slf4j
  • logback
  • log4j 2
  • scala-logging
  • slf4s (the latest version only support Scala 2.9.1)
  • Grizzled SLF4J
  • AVSL
  • loglady
  • logula (abandoned)

Of course, you can keep your project dependency cleanly with one or two logging lib (e.g., slf4j and logback)

But sometimes your other dependencies is out of control. e.g., if your dependency with apache httpclient lib which contains dependency with commons-logging, you will log with commons-logging

Also, you can add jcl-over-slf4j and exclude commons-logging explicitly in libraryDependencies setting.

A better way is to explicitly declare dependency commons-logging with the special version 99-empty.

So, sbt-one-log comes to free your hands.

πŸ‘©β€πŸš’ For developers

Test

After (fix bugs)/(add features), please add test case and run test. to run test, just

scripts/bump-version.sh 1.x.y

sbt publishLocal
sbt scripted

Release

When release a new version, make sure to publish to notes.implicit.ly by herald please.

πŸ“œ License

sbt-one-log is under the Apache 2.0 License.

About

🌳 sbt-one-log resolve the logging dependencies chaos in your development, just make logging work as you expect and follow the best practice, automatically.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •