Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ init() {
}

private let TAG = "SampleApp"
LogKt.d(tag: TAG) { "debug message" }
LogKt.d(tag: TAG) {
"debug message"
}
```

![iOS log](https://raw.githubusercontent.com/sergejsha/logger/master/documentation/examples/iOS.png)
Expand Down Expand Up @@ -132,8 +134,8 @@ In `gradle/libs.versions.toml`

```toml
[versions]
kotlin = "2.1.0"
logger = "0.8"
kotlin = "2.2.0"
logger = "0.9"

[libraries]
logger = { module = "de.halfbit:logger", version.ref = "logger" }
Expand All @@ -160,18 +162,13 @@ kotlin {

# Publish to maven Central

1. Bump version in `root.publication.gradle.kts`
2. `./gradlew clean build publishAllPublicationsToCentralRepository`

# Publish to local maven

1. Set `X.X-SNAPSHOT` version in `root.publication.gradle.kts`
2. `./gradlew clean build publishToMavenLocal`
1. Bump version in `build.gradle.kts` of the root project
2. `./gradlew clean build releaseToMavenCentral`

# License

```
Copyright 2024 Sergej Shafarenka, www.halfbit.de
Copyright 2024-2025 Sergej Shafarenka, www.halfbit.de

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
3 changes: 0 additions & 3 deletions build-plugins/build.gradle.kts

This file was deleted.

22 changes: 0 additions & 22 deletions build-plugins/settings.gradle.kts

This file was deleted.

122 changes: 0 additions & 122 deletions build-plugins/src/main/kotlin/module.publication.gradle.kts

This file was deleted.

8 changes: 0 additions & 8 deletions build-plugins/src/main/kotlin/root.publication.gradle.kts

This file was deleted.

Loading