59 lines
1.8 KiB
Groovy
59 lines
1.8 KiB
Groovy
rootProject.name = 'fints4kProject'
|
|
|
|
enableFeaturePreview('GRADLE_METADATA')
|
|
|
|
|
|
include ':fints4k'
|
|
include ':fints4k-jvm'
|
|
|
|
include ':common'
|
|
|
|
|
|
/* UI */
|
|
|
|
include ':BankingUiCommon'
|
|
|
|
include ':fints4kBankingClient'
|
|
include ':hbci4jBankingClient'
|
|
|
|
include ':BankingPersistenceJson'
|
|
include ':LuceneBankingPersistence'
|
|
include ':RoomBankingPersistence'
|
|
|
|
include ':BankingAndroidApp'
|
|
|
|
include ':BankingJavaFxControls'
|
|
include ':BankingJavaFxApp'
|
|
|
|
include ':BankingUiNativeIntegration'
|
|
|
|
|
|
project(':BankingUiCommon').projectDir = "$rootDir/ui/BankingUiCommon/" as File
|
|
|
|
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
|
|
project(':RoomBankingPersistence').projectDir = "$rootDir/persistence/database/RoomBankingPersistence/" as File
|
|
|
|
|
|
|
|
/* 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
|