Add logging functionality and Maven publishing setup

Added Logger class with various log levels to `commonMain`. Integrated `maven-publish` and `signing` plugins in `build.gradle.kts` to facilitate publishing artifacts to the Maven repository with proper credentials and metadata. Removed `gradle.properties` and updated `.gitignore` accordingly.
This commit is contained in:
2024-10-26 15:26:21 +02:00
parent fd81c0fcb4
commit 63625873be
7 changed files with 116 additions and 43 deletions

1
.idea/.name generated
View File

@@ -1 +0,0 @@
template

View File

@@ -0,0 +1,6 @@
<component name="ArtifactManager">
<artifact type="jar" name="kotlin-simple-logging-js-1.0.0-SNAPSHOT">
<output-path>$PROJECT_DIR$/build/libs</output-path>
<root id="archive" name="kotlin-simple-logging-js-1.0.0-SNAPSHOT.jar" />
</artifact>
</component>

View File

@@ -0,0 +1,6 @@
<component name="ArtifactManager">
<artifact type="jar" name="kotlin-simple-logging-jvm-1.0.0-SNAPSHOT">
<output-path>$PROJECT_DIR$/build/libs</output-path>
<root id="archive" name="kotlin-simple-logging-jvm-1.0.0-SNAPSHOT.jar" />
</artifact>
</component>