MVN

me.lorenc.dreadlogs : dreadlogs

Maven & Gradle

Jun 21, 2014
1 stars

dreadlogs · A Java library for testing logs. It supports most commonly used logging libraries, namely log4j, Logback and Java logging framework (JUL = java.util.logging). It's aimed for unit testing (TDD) but could also be used in integration and functional tests as long as they run in the same JVM as the system under test.

<dependency>
    <groupId>me.lorenc.dreadlogs</groupId>
    <artifactId>dreadlogs</artifactId>
    <version>0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of me.lorenc.dreadlogs : dreadlogs to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1

All Versions

Choose a version of me.lorenc.dreadlogs : dreadlogs to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1
dreadlogs-0.1

How to add a dependency to Maven

Add the following me.lorenc.dreadlogs : dreadlogs maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>me.lorenc.dreadlogs</groupId>
    <artifactId>dreadlogs</artifactId>
    <version>0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following me.lorenc.dreadlogs : dreadlogs gradle dependency to your build.gradle file:

implementation 'me.lorenc.dreadlogs:dreadlogs:0.1'

Gradle Kotlin DSL: Add the following me.lorenc.dreadlogs : dreadlogs gradle kotlin dependency to your build.gradle.kts file:

implementation("me.lorenc.dreadlogs:dreadlogs:0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following me.lorenc.dreadlogs : dreadlogs sbt scala dependency to your build.sbt file:

libraryDependencies += "me.lorenc.dreadlogs" % "dreadlogs" % "0.1"