зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
m
Этот коммит содержится в:
родитель
7f2a958d4d
Коммит
d803b471c0
2
db/sql/postgres/docker/multi-db.txt
Обычный файл
2
db/sql/postgres/docker/multi-db.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
https://github.com/mrts/docker-postgresql-multiple-databases
|
||||
https://github.com/mrts/docker-postgresql-multiple-databases/blob/master/create-multiple-postgresql-databases.sh
|
||||
@ -1,3 +0,0 @@
|
||||
https://github.com/spring-gradle-plugins/dependency-management-plugin
|
||||
https://stackoverflow.com/questions/40818688/gradle-script-kotlin-and-dependencymanagement
|
||||
https://spring.io/blog/2016/12/16/dependency-management-plugin-1-0-0-rc1#better-support-for-gradle-script-kotlin
|
||||
@ -1,8 +1,9 @@
|
||||
https://plugins.gradle.org/plugin/io.spring.dependency-management
|
||||
https://github.com/spring-gradle-plugins/dependency-management-plugin
|
||||
https://plugins.gradle.org/plugin/io.spring.dependency-management
|
||||
|
||||
https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/
|
||||
https://docs.spring.io/dependency-management-plugin/docs/current/api/
|
||||
https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/
|
||||
https://docs.spring.io/dependency-management-plugin/docs/current-SNAPSHOT/reference/html/
|
||||
|
||||
https://docs.gradle.org/current/userguide/dependency_management_attribute_based_matching.html
|
||||
|
||||
@ -15,9 +16,15 @@ https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/
|
||||
}
|
||||
}
|
||||
|
||||
2023
|
||||
https://medium.com/@sarguru1981/dependency-management-using-kotlin-dsl-28d06d678dfc
|
||||
2016
|
||||
https://spring.io/blog/2016/12/16/dependency-management-plugin-1-0-0-rc1#better-support-for-gradle-script-kotlin
|
||||
2015
|
||||
https://spring.io/blog/2015/02/23/better-dependency-management-for-gradle
|
||||
https://blog.jayway.com/2015/11/23/reusing-spring-boots-dependency-management/
|
||||
qa
|
||||
https://stackoverflow.com/questions/40818688/gradle-script-kotlin-and-dependencymanagement
|
||||
|
||||
notes
|
||||
Gradle does not provide an API for accessing a dependency’s classifier during resolution.
|
||||
|
||||
@ -2,3 +2,22 @@ https://github.com/ben-manes/gradle-versions-plugin
|
||||
https://plugins.gradle.org/plugin/com.github.ben-manes.versions
|
||||
|
||||
gra dependencyUpdates -Drevision=release
|
||||
|
||||
2023
|
||||
https://habr.com/ru/articles/742968/
|
||||
|
||||
plugins {
|
||||
id "com.github.ben-manes.versions" version "$version"
|
||||
}
|
||||
|
||||
def isNonStable = { String version ->
|
||||
def stableKeyword = ['RELEASE', 'FINAL', 'GA'].any { it -> version.toUpperCase().contains(it) }
|
||||
def regex = /^[0-9,.v-]+(-r)?$/
|
||||
return !stableKeyword && !(version ==~ regex)
|
||||
}
|
||||
|
||||
tasks.named("dependencyUpdates").configure {
|
||||
rejectVersionIf {
|
||||
isNonStable(it.candidate.version)
|
||||
}
|
||||
}
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user