Skip to content

kotlin-multiplatforms/Kotlog

Repository files navigation

travis-badge bintray-badge license-badge

Kotlog

Multiplatform kotlin logging library

Getting Started

Prerequisites

  • Gradle or Maven

Installing

Via JCenter (recommended)

bintray-badge

Maven

<repositories>
  <repository>
    <id>jcenter</id>
    <name>jcenter-bintray</name>
    <url>http://jcenter.bintray.com</url>
  </repository>
</repositories>

<dependency>
  <groupId>io.github.kotlin-multiplatforms</groupId>
  <artifactId>kotlog</artifactId>
  <version>VERSION</version>
</dependency>

Gradle

repositories {
  ...
  jcenter()
}

dependencies {
   implementation 'io.github.kotlin-multiplatforms:kotlog:VERSION'
}

Via JitPack (maybe broken)

jitpack-badge

Maven

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.github.kotlin-multiplatforms.Kotlog</groupId>
  <artifactId>jvm</artifactId>
  <version>VERSION</version>
</dependency>

Gradle

repositories {
  ...
  maven { url 'https://jitpack.io' }
}

dependencies {
   implementation 'com.github.kotlin-multiplatforms.Kotlog:jvm:VERSION'
}

Built With

  • Gradle - The build system and dependency manager
  • Jitpack - Simplest maven repository
  • JCenter - Maven repository that always be relieved

Contributing

todo

Versioning

We use SemVer 2.0.0 for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments