mirror of
				https://github.com/InsanusMokrassar/KSLog.git
				synced 2025-11-04 13:30:19 +00:00 
			
		
		
		
	Compare commits
	
		
			35 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b3919c8439 | |||
| d1dd159e36 | |||
| 3db55982e9 | |||
| 8e477b1056 | |||
| 480d2c8132 | |||
| a2a73dfe83 | |||
| 4528918347 | |||
| 
						 | 
					9ef93724ad | ||
| dccbd13788 | |||
| 8bb34d6842 | |||
| cff3f71de7 | |||
| aab0ac064f | |||
| d2909ed5f0 | |||
| 81eba88ce9 | |||
| a73f0d132c | |||
| bd87184f81 | |||
| 7228e81344 | |||
| ac828b1af7 | |||
| a8c85b9614 | |||
| 98fbf43d4d | |||
| ef8a3e1500 | |||
| 3edbb78d56 | |||
| 663395ccbe | |||
| ecd2b08c69 | |||
| f5e50d00a2 | |||
| a1784dc6af | |||
| 4d6410c870 | |||
| 3a4035f1a6 | |||
| 86bf9468ba | |||
| 24adeef67b | |||
| 4823df5c6f | |||
| 2d397e9b12 | |||
| 37a0fceb56 | |||
| 0860d6cacc | |||
| d9863ded5a | 
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,4 +1,6 @@
 | 
			
		||||
.idea
 | 
			
		||||
.kotlin
 | 
			
		||||
kotlin-js-store/
 | 
			
		||||
out/*
 | 
			
		||||
*.iml
 | 
			
		||||
target
 | 
			
		||||
@@ -12,5 +14,6 @@ out/
 | 
			
		||||
secret.gradle
 | 
			
		||||
local.*
 | 
			
		||||
local/
 | 
			
		||||
**/*.local.*
 | 
			
		||||
 | 
			
		||||
publishing.sh
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										35
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										35
									
								
								CHANGELOG.md
									
									
									
									
									
								
							@@ -1,5 +1,40 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
## 1.4.2
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `2.1.21`
 | 
			
		||||
* Android SDK Level: `36`
 | 
			
		||||
 | 
			
		||||
## 1.4.1
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `2.1.10`
 | 
			
		||||
 | 
			
		||||
## 1.4.0
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `2.1.0`
 | 
			
		||||
 | 
			
		||||
## 1.3.6
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `2.0.20`
 | 
			
		||||
 | 
			
		||||
## 1.3.5
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `2.0.10`
 | 
			
		||||
* Android SDK Level: `35`
 | 
			
		||||
 | 
			
		||||
## 1.3.4
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `1.9.24`
 | 
			
		||||
* Native realization of `KSLoggerDefaultPlatformLoggerLambda` now is common for all native targets
 | 
			
		||||
 | 
			
		||||
## 1.3.3
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `1.9.23`
 | 
			
		||||
 | 
			
		||||
## 1.3.2
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `1.9.22`
 | 
			
		||||
 | 
			
		||||
## 1.3.1
 | 
			
		||||
 | 
			
		||||
* `Kotlin`: `1.9.21`
 | 
			
		||||
 
 | 
			
		||||
@@ -73,6 +73,10 @@ kotlin {
 | 
			
		||||
            dependencies {
 | 
			
		||||
                implementation libs.kotlin.test.common
 | 
			
		||||
                implementation libs.kotlin.test.annotations.common
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        jvmTest {
 | 
			
		||||
            dependencies {
 | 
			
		||||
                implementation libs.kotlin.test.junit
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
@@ -18,13 +18,13 @@ if (new File(projectDir, "secret.gradle").exists()) {
 | 
			
		||||
    githubRelease {
 | 
			
		||||
        token "${project.property('GITHUB_RELEASE_TOKEN')}"
 | 
			
		||||
 | 
			
		||||
        owner "InsanusMokrassar"
 | 
			
		||||
        repo "KSLog"
 | 
			
		||||
        owner = "InsanusMokrassar"
 | 
			
		||||
        repo = "KSLog"
 | 
			
		||||
 | 
			
		||||
        tagName "v${project.version}"
 | 
			
		||||
        releaseName "${project.version}"
 | 
			
		||||
        targetCommitish "${project.version}"
 | 
			
		||||
        tagName = "v${project.version}"
 | 
			
		||||
        releaseName = "${project.version}"
 | 
			
		||||
        targetCommitish = "${project.version}"
 | 
			
		||||
 | 
			
		||||
        body getCurrentVersionChangelog()
 | 
			
		||||
        body = getCurrentVersionChangelog()
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
 | 
			
		||||
# Project data
 | 
			
		||||
 | 
			
		||||
group=dev.inmo
 | 
			
		||||
version=1.3.1
 | 
			
		||||
android_code_version=28
 | 
			
		||||
version=1.4.2
 | 
			
		||||
android_code_version=36
 | 
			
		||||
 
 | 
			
		||||
@@ -1,22 +1,22 @@
 | 
			
		||||
[versions]
 | 
			
		||||
 | 
			
		||||
kotlin = "1.9.21"
 | 
			
		||||
kotlin-gradle-plugin = "8.1.4"
 | 
			
		||||
kotlin = "2.1.21"
 | 
			
		||||
kotlin-gradle-plugin = "8.2.2"
 | 
			
		||||
 | 
			
		||||
versions = "0.50.0"
 | 
			
		||||
versions = "0.51.0"
 | 
			
		||||
 | 
			
		||||
dokka = "1.9.10"
 | 
			
		||||
dokka = "2.0.0"
 | 
			
		||||
 | 
			
		||||
dexcount = "4.0.0"
 | 
			
		||||
junit_version = "4.12"
 | 
			
		||||
test_ext_junit_version = "1.1.5"
 | 
			
		||||
espresso_core = "3.5.1"
 | 
			
		||||
test_ext_junit_version = "1.2.1"
 | 
			
		||||
espresso_core = "3.6.1"
 | 
			
		||||
 | 
			
		||||
android-minSdk = "21"
 | 
			
		||||
android-compileSdk = "34"
 | 
			
		||||
android-buildTools = "34.0.0"
 | 
			
		||||
android-compileSdk = "36"
 | 
			
		||||
android-buildTools = "36.0.0"
 | 
			
		||||
 | 
			
		||||
github-release = "2.4.1"
 | 
			
		||||
github-release = "2.5.2"
 | 
			
		||||
 | 
			
		||||
[libraries]
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							@@ -1,5 +1,5 @@
 | 
			
		||||
distributionBase=GRADLE_USER_HOME
 | 
			
		||||
distributionPath=wrapper/dists
 | 
			
		||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
 | 
			
		||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
 | 
			
		||||
zipStoreBase=GRADLE_USER_HOME
 | 
			
		||||
zipStorePath=wrapper/dists
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -1,4 +1,49 @@
 | 
			
		||||
import java.nio.charset.StandardCharsets
 | 
			
		||||
import java.net.http.HttpClient
 | 
			
		||||
import java.net.http.HttpRequest
 | 
			
		||||
import java.net.http.HttpResponse
 | 
			
		||||
 | 
			
		||||
apply plugin: 'maven-publish'
 | 
			
		||||
if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) {
 | 
			
		||||
    def taskName = "uploadSonatypePublication"
 | 
			
		||||
    if (rootProject.tasks.names.contains(taskName) == false) {
 | 
			
		||||
        rootProject.tasks.register(taskName) {
 | 
			
		||||
            doLast {
 | 
			
		||||
                def username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER')
 | 
			
		||||
                def password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD')
 | 
			
		||||
                def bearer = Base64.getEncoder().encodeToString("$username:$password".getBytes(StandardCharsets.UTF_8))
 | 
			
		||||
    
 | 
			
		||||
                def client = HttpClient.newHttpClient()
 | 
			
		||||
                def request = HttpRequest.newBuilder()
 | 
			
		||||
                        .uri(URI.create("https://ossrh-staging-api.central.sonatype.com/manual/search/repositories?state=open"))
 | 
			
		||||
                        .GET()
 | 
			
		||||
                        .header("Content-Type", "application/json")
 | 
			
		||||
                        .header("Authorization", "Bearer $bearer")
 | 
			
		||||
                        .build()
 | 
			
		||||
    
 | 
			
		||||
                def response = client.send(request, HttpResponse.BodyHandlers.ofString())
 | 
			
		||||
                def keys = new ArrayList<String>()
 | 
			
		||||
                response.body().findAll("\"key\"[\\s]*:[\\s]*\"[^\"]+\"").forEach {
 | 
			
		||||
                    def key = it.find("[^\"]+\"\$").find("[^\"]+")
 | 
			
		||||
                    keys.add(key)
 | 
			
		||||
                }
 | 
			
		||||
                keys.forEach {
 | 
			
		||||
                    println("Start uploading $it")
 | 
			
		||||
                    def uploadRequest = HttpRequest.newBuilder()
 | 
			
		||||
                            .uri(URI.create("https://ossrh-staging-api.central.sonatype.com/manual/upload/repository/$it?publishing_type=user_managed"))
 | 
			
		||||
                            .POST(HttpRequest.BodyPublishers.ofString(""))
 | 
			
		||||
                            .header("Content-Type", "application/json")
 | 
			
		||||
                            .header("Authorization", "Bearer $bearer")
 | 
			
		||||
                            .build()
 | 
			
		||||
                    def uploadResponse = client.send(uploadRequest, HttpResponse.BodyHandlers.ofString())
 | 
			
		||||
                    if (uploadResponse.statusCode() != 200) {
 | 
			
		||||
                        throw IllegalStateException("Faced error of uploading for repo with key $it. Response: $uploadResponse")
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
task javadocsJar(type: Jar) {
 | 
			
		||||
    archiveClassifier = 'javadoc'
 | 
			
		||||
@@ -19,29 +64,25 @@ publishing {
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            developers {
 | 
			
		||||
                
 | 
			
		||||
                developer {
 | 
			
		||||
                    id = "Akkihi"
 | 
			
		||||
                    name = "Akkihi"
 | 
			
		||||
                    email = "akkihiguy@gmail.com"
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
                developer {
 | 
			
		||||
                    id = "InsanusMokrassar"
 | 
			
		||||
                    name = "InsanusMokrassar"
 | 
			
		||||
                    email = "ovsyannikov.alexey95@gmail.com"
 | 
			
		||||
                }
 | 
			
		||||
                
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            licenses {
 | 
			
		||||
                
 | 
			
		||||
                license {
 | 
			
		||||
                    name = "MIT License"
 | 
			
		||||
                    url = "https://opensource.org/licenses/MIT"
 | 
			
		||||
                }
 | 
			
		||||
                
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    repositories {
 | 
			
		||||
@@ -54,36 +95,28 @@ publishing {
 | 
			
		||||
                    username = project.hasProperty('GITHUBPACKAGES_USER') ? project.property('GITHUBPACKAGES_USER') : System.getenv('GITHUBPACKAGES_USER')
 | 
			
		||||
                    password = project.hasProperty('GITHUBPACKAGES_PASSWORD') ? project.property('GITHUBPACKAGES_PASSWORD') : System.getenv('GITHUBPACKAGES_PASSWORD')
 | 
			
		||||
                }
 | 
			
		||||
            
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
            if (project.hasProperty('GITEA_TOKEN') || System.getenv('GITEA_TOKEN') != null) {
 | 
			
		||||
        if ((project.hasProperty('INMONEXUS_USER') || System.getenv('INMONEXUS_USER') != null) && (project.hasProperty('INMONEXUS_PASSWORD') || System.getenv('INMONEXUS_PASSWORD') != null)) {
 | 
			
		||||
            maven {
 | 
			
		||||
                    name = "Gitea"
 | 
			
		||||
                    url = uri("https://git.inmo.dev/api/packages/InsanusMokrassar/maven")
 | 
			
		||||
                name = "InmoNexus"
 | 
			
		||||
                url = uri("https://nexus.inmo.dev/repository/maven-releases/")
 | 
			
		||||
        
 | 
			
		||||
                    credentials(HttpHeaderCredentials) {
 | 
			
		||||
                        name = "Authorization"
 | 
			
		||||
                        value = project.hasProperty('GITEA_TOKEN') ? project.property('GITEA_TOKEN') : System.getenv('GITEA_TOKEN')
 | 
			
		||||
                credentials {
 | 
			
		||||
                    username = project.hasProperty('INMONEXUS_USER') ? project.property('INMONEXUS_USER') : System.getenv('INMONEXUS_USER')
 | 
			
		||||
                    password = project.hasProperty('INMONEXUS_PASSWORD') ? project.property('INMONEXUS_PASSWORD') : System.getenv('INMONEXUS_PASSWORD')
 | 
			
		||||
                }
 | 
			
		||||
            
 | 
			
		||||
                    authentication {
 | 
			
		||||
                        header(HttpHeaderAuthentication)
 | 
			
		||||
                    }
 | 
			
		||||
            
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) {
 | 
			
		||||
            maven {
 | 
			
		||||
                name = "sonatype"
 | 
			
		||||
                    url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
 | 
			
		||||
                url = uri("https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/")
 | 
			
		||||
        
 | 
			
		||||
                credentials {
 | 
			
		||||
                    username = project.hasProperty('SONATYPE_USER') ? project.property('SONATYPE_USER') : System.getenv('SONATYPE_USER')
 | 
			
		||||
                    password = project.hasProperty('SONATYPE_PASSWORD') ? project.property('SONATYPE_PASSWORD') : System.getenv('SONATYPE_PASSWORD')
 | 
			
		||||
                }
 | 
			
		||||
            
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
@@ -109,4 +142,21 @@ if (project.hasProperty("signing.gnupg.keyName")) {
 | 
			
		||||
        def signingTasks = project.getTasks().withType(Sign.class)
 | 
			
		||||
        mustRunAfter(signingTasks)
 | 
			
		||||
    }
 | 
			
		||||
    // Workaround to make test tasks use sign
 | 
			
		||||
    project.getTasks().withType(Sign.class).configureEach { signTask ->
 | 
			
		||||
        def withoutSign = (signTask.name.startsWith("sign") ? signTask.name.minus("sign") : signTask.name)
 | 
			
		||||
        def pubName = withoutSign.endsWith("Publication") ? withoutSign.substring(0, withoutSign.length() - "Publication".length()) : withoutSign
 | 
			
		||||
        // These tasks only exist for native targets, hence findByName() to avoid trying to find them for other targets
 | 
			
		||||
 | 
			
		||||
        // Task ':linkDebugTest<platform>' uses this output of task ':sign<platform>Publication' without declaring an explicit or implicit dependency
 | 
			
		||||
        def debugTestTask = tasks.findByName("linkDebugTest$pubName")
 | 
			
		||||
        if (debugTestTask != null) {
 | 
			
		||||
            signTask.mustRunAfter(debugTestTask)
 | 
			
		||||
        }
 | 
			
		||||
        // Task ':compileTestKotlin<platform>' uses this output of task ':sign<platform>Publication' without declaring an explicit or implicit dependency
 | 
			
		||||
        def testTask = tasks.findByName("compileTestKotlin$pubName")
 | 
			
		||||
        if (testTask != null) {
 | 
			
		||||
            signTask.mustRunAfter(testTask)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1 +1 @@
 | 
			
		||||
{"licenses":[{"id":"MIT","title":"MIT License","url":"https://opensource.org/licenses/MIT"}],"mavenConfig":{"name":"${project.name}","description":"Simple logging library for kotlin","url":"https://github.com/InsanusMokrassar/KSLog","vcsUrl":"https://github.com/InsanusMokrassar/KSLog.git","developers":[{"id":"Akkihi","name":"Akkihi","eMail":"akkihiguy@gmail.com"},{"id":"InsanusMokrassar","name":"InsanusMokrassar","eMail":"ovsyannikov.alexey95@gmail.com"}],"repositories":[{"name":"GithubPackages","url":"https://maven.pkg.github.com/InsanusMokrassar/KSLog"},{"name":"Gitea","url":"https://git.inmo.dev/api/packages/InsanusMokrassar/maven","credsType":{"type":"dev.inmo.kmppscriptbuilder.core.models.MavenPublishingRepository.CredentialsType.HttpHeaderCredentials","headerName":"Authorization","headerValueProperty":"GITEA_TOKEN"}},{"name":"sonatype","url":"https://oss.sonatype.org/service/local/staging/deploy/maven2/"}],"gpgSigning":{"type":"dev.inmo.kmppscriptbuilder.core.models.GpgSigning.Optional"}}}
 | 
			
		||||
{"licenses":[{"id":"MIT","title":"MIT License","url":"https://opensource.org/licenses/MIT"}],"mavenConfig":{"name":"${project.name}","description":"Simple logging library for kotlin","url":"https://github.com/InsanusMokrassar/KSLog","vcsUrl":"https://github.com/InsanusMokrassar/KSLog.git","developers":[{"id":"Akkihi","name":"Akkihi","eMail":"akkihiguy@gmail.com"},{"id":"InsanusMokrassar","name":"InsanusMokrassar","eMail":"ovsyannikov.alexey95@gmail.com"}],"repositories":[{"name":"GithubPackages","url":"https://maven.pkg.github.com/InsanusMokrassar/KSLog"},{"name":"InmoNexus","url":"https://nexus.inmo.dev/repository/maven-releases/"},{"name":"sonatype","url":"https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"}],"gpgSigning":{"type":"dev.inmo.kmppscriptbuilder.core.models.GpgSigning.Optional"},"includeCentralSonatypeUploadingScript":true}}
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
package dev.inmo.kslog.common
 | 
			
		||||
 | 
			
		||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
 | 
			
		||||
    printlnLogging
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
package dev.inmo.kslog.common
 | 
			
		||||
 | 
			
		||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
 | 
			
		||||
    printlnLogging
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
package dev.inmo.kslog.common
 | 
			
		||||
 | 
			
		||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
 | 
			
		||||
    printlnLogging
 | 
			
		||||
		Reference in New Issue
	
	Block a user