From 875ce285acab28b0eb5e85dd1d8d4abfd2f3e186 Mon Sep 17 00:00:00 2001 From: Ihar Hancharenka Date: Sun, 5 Jan 2025 09:40:15 +0300 Subject: [PATCH] m --- db/sql/postgres/tools/misc-static-analysis.txt | 2 ++ .../postgres/tools/monitor/pg-index-health-java.txt | 10 ++++++++++ .../dependency/version-catalog-platform.txt | 13 +++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 db/sql/postgres/tools/misc-static-analysis.txt create mode 100644 db/sql/postgres/tools/monitor/pg-index-health-java.txt diff --git a/db/sql/postgres/tools/misc-static-analysis.txt b/db/sql/postgres/tools/misc-static-analysis.txt new file mode 100644 index 000000000..007f2ac2d --- /dev/null +++ b/db/sql/postgres/tools/misc-static-analysis.txt @@ -0,0 +1,2 @@ +2024 +https://habr.com/ru/articles/800121/ diff --git a/db/sql/postgres/tools/monitor/pg-index-health-java.txt b/db/sql/postgres/tools/monitor/pg-index-health-java.txt new file mode 100644 index 000000000..86ac4c292 --- /dev/null +++ b/db/sql/postgres/tools/monitor/pg-index-health-java.txt @@ -0,0 +1,10 @@ +https://github.com/mfvanek/pg-index-health + +https://github.com/mfvanek/pg-index-health/blob/master/gradle/libs.versions.toml +https://github.com/mfvanek/pg-index-health/blob/master/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/settings/ImportantParam.java + +2024 +https://habr.com/ru/articles/871546/ +2020 +https://habr.com/ru/articles/490824/ +https://habr.com/ru/companies/tensor/articles/488104/ diff --git a/pl/cross/tools/build/gradle/features/dependency/version-catalog-platform.txt b/pl/cross/tools/build/gradle/features/dependency/version-catalog-platform.txt index 5b75ee93e..789b1b9cd 100644 --- a/pl/cross/tools/build/gradle/features/dependency/version-catalog-platform.txt +++ b/pl/cross/tools/build/gradle/features/dependency/version-catalog-platform.txt @@ -1,9 +1,12 @@ +https://docs.gradle.org/current/userguide/version_catalogs.html + https://docs.gradle.org/current/userguide/platforms.html#sub:type-unsafe-access-to-catalog https://docs.gradle.org/current/userguide/java_platform_plugin.html https://docs.gradle.org/current/javadoc/org/gradle/api/artifacts/VersionCatalog.html samples + https://github.com/lovekty/ktpractice/blob/master/gradle/libs.versions.toml ... ! check ones at structuring/large.txt @@ -23,3 +26,13 @@ https://proandroiddev.com/gradle-version-catalogs-for-an-awesome-dependency-mana ! no kt-script, just a groovy-based 2021 https://melix.github.io/blog/2021/03/version-catalogs.html + + +private val versionCatalog = extensions.getByType().named("libs") + +dependencies { + versionCatalog.findLibrary("jsr305").ifPresent { + implementation(it) + } + ... +}