kotlin-inline-logger-jvm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.michael-bull.kotlin-inline-logger</groupId> <artifactId>kotlin-inline-logger-jvm</artifactId> <version>1.0.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.michael-bull.kotlin-inline-logger</groupId> <artifactId>kotlin-inline-logger-jvm</artifactId> <version>1.0.6</version> <name>kotlin-inline-logger</name> <description>A logger facilitating lazily-evaluated log calls via Kotlin's inline classes & functions.</description> <url>https://github.com/michaelbull/kotlin-inline-logger</url> <inceptionYear>2019</inceptionYear> <licenses> <license> <name>ISC License</name> <url>https://opensource.org/licenses/isc-license.txt</url> </license> </licenses> <developers> <developer> <name>Michael Bull</name> <url>https://www.michael-bull.com</url> </developer> </developers> <contributors> <contributor> <name>Toby-S</name> <url>https://github.com/Toby-S</url> </contributor> <contributor> <name>Richard Gomez</name> <url>https://github.com/rgmz</url> </contributor> <contributor> <name>Sebastian Schuberth</name> <url>https://github.com/sschuberth</url> </contributor> </contributors> <scm> <connection>scm:git:https://github.com/michaelbull/kotlin-inline-logger</connection> <developerConnection>scm:git:git@github.com:michaelbull/kotlin-inline-logger.git</developerConnection> <url>https://github.com/michaelbull/kotlin-inline-logger</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/michaelbull/kotlin-inline-logger/issues</url> </issueManagement> <ciManagement> <system>GitHub</system> <url>https://github.com/michaelbull/kotlin-inline-logger/actions?query=workflow%3Aci</url> </ciManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.22</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.9.22</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-common</artifactId> <version>1.9.22</version> <scope>runtime</scope> </dependency> </dependencies> </project>