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
6 changes: 3 additions & 3 deletions combot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "io.github.gabrielbrasileiro"
version = "1.0.13"
version = "1.1.0"

android {
namespace = "br.com.gabrielbrasileiro.combot"
Expand Down Expand Up @@ -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 {
Expand All @@ -75,7 +75,7 @@ mavenPublishing {
developer {
id.set("GabrielBrasileiro")
name.set("Gabriel Brasileiro")
url.set("https://github.com/GabrielBrasileiro/")
url.set("https://gabrielbrasileiro.dev")
}
}

Expand Down
9 changes: 4 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -28,17 +28,16 @@ dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
// Add for your project if not declared
mavenCentral()
// Add for your project
maven { url = uri("https://jitpack.io") }
}
}
```

### Gradle Kts

```kotlin
implementation("com.github.GabrielBrasileiro:combot:x.x.x")
implementation("io.github.gabrielbrasileiro:combot:x.x.x")
```

### Gradle Toml + Kts
Expand All @@ -48,7 +47,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
Expand Down