Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-19 18:06:50 +03:00
parent 0658cf67cb
commit 84570a8406
15 changed files with 2860 additions and 2107 deletions

View file

@ -106,6 +106,17 @@ dependencyResolutionManagement {
includeGroupAndSubgroups("com.tangem.ic4j")
}
}
maven {
// setting any repository from tangem project allows maven search all packages in the project
url = uri("https://maven.pkg.github.com/tangem/web3j")
credentials {
username = properties.getProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = properties.getProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
content {
includeGroupAndSubgroups("org.web3j")
}
}
maven("https://jitpack.io")
}