mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-11 01:30:30 +03:00
scanner: support libs.versions.toml
This commit is contained in:
parent
528760acc8
commit
eff0ef48f4
17 changed files with 723 additions and 35 deletions
24
tests/source-files/org.piepmeyer.gauguin/settings.gradle.kts
Normal file
24
tests/source-files/org.piepmeyer.gauguin/settings.gradle.kts
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
pluginManagement {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
versionCatalogs {
|
||||
create("libs") {
|
||||
from(files("libs.versions.toml"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
|
||||
}
|
||||
|
||||
rootProject.name = "gauguin"
|
||||
|
||||
include(":gauguin-app")
|
||||
include(":gauguin-core")
|
||||
Loading…
Add table
Add a link
Reference in a new issue