TestContainer Postgres

This commit is contained in:
2025-09-13 14:47:02 +02:00
parent ae47c718e5
commit 5b19a4d7ea
8 changed files with 161 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ fun getProperty(property: String): String = extra[property] as String
fun retrieveConfiguration(
property: String,
environment: String,
): String? = if (extra.has(property)) getProperty(property) else getenv(environment)
): String = if (extra.has(property)) getProperty(property) else getenv(environment) ?: ""
fun aaRepository(repositoryHandler: RepositoryHandler) {
repositoryHandler.maven {