From 78c5cf6bbea8fe2fc6c8bec2467600c41a235da8 Mon Sep 17 00:00:00 2001 From: Gabriel Brasileiro Date: Sun, 26 Jul 2026 20:54:10 -0300 Subject: [PATCH 1/5] Switch README from JitPack to Maven Central The library now publishes to Maven Central under io.github.gabrielbrasileiro, so replace the JitPack version badge with the Maven Central badge, drop the jitpack.io repository, and update the install coordinates to the new group. --- readme.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 002cd97..677c7a1 100644 --- a/readme.md +++ b/readme.md @@ -7,7 +7,7 @@ ![Kotlin](https://img.shields.io/badge/Kotlin-2.2.21-blue) ![GitHub Actions](https://github.com/GabrielBrasileiro/combot/actions/workflows/main.yml/badge.svg?branch=main) ![License](https://img.shields.io/badge/License-Apache%202.0-blue) -![JitPack](https://img.shields.io/jitpack/version/com.github.GabrielBrasileiro/combot.svg?color=blue) +![Maven Central](https://img.shields.io/maven-central/v/io.github.gabrielbrasileiro/combot.svg?color=blue) ## Description @@ -29,8 +29,6 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - // Add for your project - maven { url = uri("https://jitpack.io") } } } ``` @@ -38,7 +36,7 @@ dependencyResolutionManagement { ### Gradle Kts ```kotlin -implementation("com.github.GabrielBrasileiro:combot:x.x.x") +implementation("io.github.gabrielbrasileiro:combot:x.x.x") ``` ### Gradle Toml + Kts @@ -48,7 +46,7 @@ implementation("com.github.GabrielBrasileiro:combot:x.x.x") combot = "x.x.x" [libraries] -combot = { group = "com.github.GabrielBrasileiro", name = "combot", version.ref = "combot" } +combot = { group = "io.github.gabrielbrasileiro", name = "combot", version.ref = "combot" } ``` ```kotlin From 4def2c6e36e7436f93667d8196748f8053bf0313 Mon Sep 17 00:00:00 2001 From: Gabriel Brasileiro Date: Sun, 26 Jul 2026 20:55:09 -0300 Subject: [PATCH 2/5] Add comment above mavenCentral repository in README install snippet --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 677c7a1..775afb9 100644 --- a/readme.md +++ b/readme.md @@ -28,6 +28,7 @@ dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() + // Add for your project if not declared mavenCentral() } } From cd34bf25ed33315fc5bdd8565d048d6e304833d4 Mon Sep 17 00:00:00 2001 From: Gabriel Brasileiro Date: Sun, 26 Jul 2026 20:58:20 -0300 Subject: [PATCH 3/5] Bump combot version to 1.1.0 --- combot/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combot/build.gradle.kts b/combot/build.gradle.kts index 33e2816..f6d8b26 100644 --- a/combot/build.gradle.kts +++ b/combot/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "io.github.gabrielbrasileiro" -version = "1.0.13" +version = "1.1.0" android { namespace = "br.com.gabrielbrasileiro.combot" From 6780affb4da365c2ba52d0f3dea741fd82cf47bf Mon Sep 17 00:00:00 2001 From: Gabriel Brasileiro Date: Sun, 26 Jul 2026 21:02:28 -0300 Subject: [PATCH 4/5] Point POM project url to docs site --- combot/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combot/build.gradle.kts b/combot/build.gradle.kts index f6d8b26..8f925f2 100644 --- a/combot/build.gradle.kts +++ b/combot/build.gradle.kts @@ -61,7 +61,7 @@ mavenPublishing { name.set("Combot") description.set("A declarative Android UI testing library for creating and managing Compose test flows easily.") inceptionYear.set("2025") - url.set("https://github.com/GabrielBrasileiro/combot/") + url.set("https://gabrielbrasileiro.dev/combot") licenses { license { From c4a149b900758a2f7a6a2f3b5d4d5da97feae15e Mon Sep 17 00:00:00 2001 From: Gabriel Brasileiro Date: Sun, 26 Jul 2026 21:03:07 -0300 Subject: [PATCH 5/5] Point developer url to personal site --- combot/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combot/build.gradle.kts b/combot/build.gradle.kts index 8f925f2..db092db 100644 --- a/combot/build.gradle.kts +++ b/combot/build.gradle.kts @@ -75,7 +75,7 @@ mavenPublishing { developer { id.set("GabrielBrasileiro") name.set("Gabriel Brasileiro") - url.set("https://github.com/GabrielBrasileiro/") + url.set("https://gabrielbrasileiro.dev") } }