mirror of
				https://github.com/InsanusMokrassar/KSLog.git
				synced 2025-10-30 02:50:05 +00:00 
			
		
		
		
	Compare commits
	
		
			10 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 526de46a98 | |||
| 0af8c78e37 | |||
| 6840598e04 | |||
| 7a2d070ee3 | |||
| 92651d3ba6 | |||
| b8c72f1131 | |||
| 9b92fa29f4 | |||
| 42ced6edd2 | |||
| dd3e4c4c2a | |||
| f528909915 | 
| @@ -1,5 +1,13 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## 1.5.1 | ||||
|  | ||||
| * `Kotlin`: `2.2.20` | ||||
|  | ||||
| ## 1.5.0 | ||||
|  | ||||
| * `Kotlin`: `2.2.0` | ||||
|  | ||||
| ## 1.4.2 | ||||
|  | ||||
| * `Kotlin`: `2.1.21` | ||||
|   | ||||
							
								
								
									
										26
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								build.gradle
									
									
									
									
									
								
							| @@ -20,9 +20,29 @@ plugins { | ||||
|     alias(libs.plugins.kotlin.multiplatform) | ||||
|     alias(libs.plugins.kotlin.dokka) | ||||
|     alias(libs.plugins.versions) | ||||
|     alias(libs.plugins.nmcp.aggregation) | ||||
| } | ||||
|  | ||||
| apply plugin: "com.android.library" | ||||
| apply from: "defaultAndroidSettings.gradle" | ||||
|  | ||||
| apply from: "github_release.gradle" | ||||
| apply from: "publish.gradle" | ||||
| apply from: "dokka.gradle" | ||||
|  | ||||
|  | ||||
| if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) { | ||||
|     nmcpAggregation { | ||||
|         centralPortal { | ||||
|             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') | ||||
|             validationTimeout = Duration.ofHours(4) | ||||
|             publishingType = System.getenv('PUBLISHING_TYPE') != "" ? System.getenv('PUBLISHING_TYPE') : "USER_MANAGED" | ||||
|         } | ||||
|  | ||||
|         publishAllProjectsProbablyBreakingProjectIsolation() | ||||
|     } | ||||
| } | ||||
|  | ||||
| project.version = "$version" | ||||
| project.group = "$group" | ||||
| @@ -87,9 +107,3 @@ java { | ||||
|     sourceCompatibility = JavaVersion.VERSION_1_8 | ||||
|     targetCompatibility = JavaVersion.VERSION_1_8 | ||||
| } | ||||
|  | ||||
| apply from: "defaultAndroidSettings.gradle" | ||||
|  | ||||
| apply from: "github_release.gradle" | ||||
| apply from: "publish.gradle" | ||||
| apply from: "dokka.gradle" | ||||
|   | ||||
| @@ -11,12 +11,20 @@ private String getCurrentVersionChangelog() { | ||||
|     return changelogDataOS.toString().trim() | ||||
| } | ||||
|  | ||||
| if (new File(projectDir, "secret.gradle").exists()) { | ||||
|     apply from: './secret.gradle' | ||||
|  | ||||
| def githubTokenVariableName = "GITHUB_RELEASE_TOKEN" | ||||
| def githubTokenVariableFromEnv = System.getenv(githubTokenVariableName) | ||||
|  | ||||
| def secretFile = new File(projectDir, "secret.gradle") | ||||
| if (secretFile.exists() || project.hasProperty(githubTokenVariableName) || (githubTokenVariableFromEnv != "" && githubTokenVariableFromEnv != null)) { | ||||
|     if (secretFile.exists()) { | ||||
|         apply from: './secret.gradle' | ||||
|     } | ||||
|     apply plugin: "com.github.breadmoirai.github-release" | ||||
|     def githubReleaseToken = project.hasProperty(githubTokenVariableName) ? project.property(githubTokenVariableName).toString() : githubTokenVariableFromEnv | ||||
|  | ||||
|     githubRelease { | ||||
|         token "${project.property('GITHUB_RELEASE_TOKEN')}" | ||||
|         token githubReleaseToken | ||||
|  | ||||
|         owner = "InsanusMokrassar" | ||||
|         repo = "KSLog" | ||||
|   | ||||
| @@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m | ||||
| # Project data | ||||
|  | ||||
| group=dev.inmo | ||||
| version=1.4.2 | ||||
| android_code_version=36 | ||||
| version=1.5.1 | ||||
| android_code_version=38 | ||||
|   | ||||
| @@ -1,16 +1,17 @@ | ||||
| [versions] | ||||
|  | ||||
| kotlin = "2.1.21" | ||||
| kotlin-gradle-plugin = "8.2.2" | ||||
| kotlin = "2.2.20" | ||||
| kotlin-gradle-plugin = "8.10.+" | ||||
|  | ||||
| nmcp = "1.2.0" | ||||
| versions = "0.51.0" | ||||
|  | ||||
| dokka = "2.0.0" | ||||
|  | ||||
| dexcount = "4.0.0" | ||||
| junit_version = "4.12" | ||||
| test_ext_junit_version = "1.2.1" | ||||
| espresso_core = "3.6.1" | ||||
| test_ext_junit_version = "1.3.0" | ||||
| espresso_core = "3.7.0" | ||||
|  | ||||
| android-minSdk = "21" | ||||
| android-compileSdk = "36" | ||||
| @@ -42,3 +43,5 @@ kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref | ||||
| kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } | ||||
|  | ||||
| versions = { id = "com.github.ben-manes.versions", version.ref = "versions" } | ||||
|  | ||||
| nmcp-aggregation = { id = "com.gradleup.nmcp.aggregation", version.ref = "nmcp" } | ||||
|   | ||||
							
								
								
									
										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.11.1-bin.zip | ||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip | ||||
| zipStoreBase=GRADLE_USER_HOME | ||||
| zipStorePath=wrapper/dists | ||||
|   | ||||
| @@ -1,49 +1,5 @@ | ||||
| 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' | ||||
| @@ -86,17 +42,6 @@ publishing { | ||||
|         } | ||||
|     } | ||||
|     repositories { | ||||
|         if ((project.hasProperty('GITHUBPACKAGES_USER') || System.getenv('GITHUBPACKAGES_USER') != null) && (project.hasProperty('GITHUBPACKAGES_PASSWORD') || System.getenv('GITHUBPACKAGES_PASSWORD') != null)) { | ||||
|             maven { | ||||
|                 name = "GithubPackages" | ||||
|                 url = uri("https://maven.pkg.github.com/InsanusMokrassar/KSLog") | ||||
|          | ||||
|                 credentials { | ||||
|                     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('INMONEXUS_USER') || System.getenv('INMONEXUS_USER') != null) && (project.hasProperty('INMONEXUS_PASSWORD') || System.getenv('INMONEXUS_PASSWORD') != null)) { | ||||
|             maven { | ||||
|                 name = "InmoNexus" | ||||
|   | ||||
| @@ -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":"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}} | ||||
| {"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":"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"}}} | ||||
		Reference in New Issue
	
	Block a user