fints4k/settings.gradle

79 lines
2.2 KiB
Groovy
Raw Normal View History

2020-10-18 12:47:02 +00:00
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id 'io.quarkus' version "$quarkusVersion"
}
}
2020-05-11 16:21:36 +00:00
rootProject.name = 'fints4kProject'
2019-10-02 17:54:11 +00:00
enableFeaturePreview('GRADLE_METADATA')
2020-05-11 16:21:36 +00:00
include ':fints4k'
include ':fints4k-jvm'
2020-07-11 10:03:28 +00:00
include ':common'
/* UI */
2019-10-15 16:27:06 +00:00
2019-11-03 21:30:52 +00:00
include ':BankingUiCommon'
2020-05-11 16:21:36 +00:00
include ':fints4kBankingClient'
include ':hbci4jBankingClient'
include ':BankingPersistenceJson'
include ':LuceneBankingPersistence'
2020-09-15 19:12:54 +00:00
include ':RoomBankingPersistence'
include ':BankingAndroidApp'
include ':BankingJavaFxControls'
include ':BankingJavaFxApp'
include ':BankingUiNativeIntegration'
project(':BankingUiCommon').projectDir = "$rootDir/ui/BankingUiCommon/" as File
2020-05-11 16:21:36 +00:00
project(':fints4kBankingClient').projectDir = "$rootDir/ui/fints4kBankingClient/" as File
project(':hbci4jBankingClient').projectDir = "$rootDir/ui/hbci4jBankingClient/" as File
project(':BankingAndroidApp').projectDir = "$rootDir/ui/BankingAndroidApp/" as File
project(':BankingJavaFxControls').projectDir = "$rootDir/ui/BankingJavaFxControls/" as File
project(':BankingJavaFxApp').projectDir = "$rootDir/ui/BankingJavaFxApp/" as File
project(':BankingUiNativeIntegration').projectDir = "$rootDir/ui/BankingUiNativeIntegration/" as File
project(':BankingPersistenceJson').projectDir = "$rootDir/persistence/json/BankingPersistenceJson/" as File
project(':LuceneBankingPersistence').projectDir = "$rootDir/persistence/LuceneBankingPersistence/" as File
2020-09-15 19:12:54 +00:00
project(':RoomBankingPersistence').projectDir = "$rootDir/persistence/database/RoomBankingPersistence/" as File
2020-10-18 12:47:02 +00:00
/* REST APIs */
include ':BankFinderRest'
2020-10-18 12:56:54 +00:00
include ':fints4kRest'
2020-10-18 12:47:02 +00:00
project(':BankFinderRest').projectDir = "$rootDir/rest/BankFinderRest/" as File
2020-10-18 12:56:54 +00:00
project(':fints4kRest').projectDir = "$rootDir/rest/fints4kRest/" as File
2020-10-18 12:47:02 +00:00
/* Tools */
include ':BankFinder'
include ':LuceneBankFinder'
include ':BankListCreator'
project(':BankFinder').projectDir = "$rootDir/tools/BankFinder/" as File
project(':LuceneBankFinder').projectDir = "$rootDir/tools/LuceneBankFinder/" as File
project(':BankListCreator').projectDir = "$rootDir/tools/BankListCreator/" as File