Финальный аккорд

This commit is contained in:
2026-06-09 23:19:54 +05:00
parent 908744b956
commit 4e949bf337
2 changed files with 19 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ plugins {
`maven-publish`
}
group = "ru.thiflict"
group = "ru.thiflict.binaryutils"
version = "1.0.0"
repositories {
@@ -25,7 +25,7 @@ tasks.test {
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "ru.thiflict"
groupId = "ru.thiflict.binaryutils"
artifactId = "binary-utils"
version = "1.0.0"

17
readme.md Normal file
View File

@@ -0,0 +1,17 @@
# BinaryUtils
пока пох на описание лмао
как импортировать в проект:
`build.gradle.kts`:
```kotlin
repositories {
// Добавить в repositories
maven("https://git.ds1.thiflict.ru/api/packages/Thiflict/maven")
}
dependencies {
// Добавить в dependencies
implementation("ru.thiflict.binaryutils:binary-utils:1.0.0")
}
```