43 lines
1.2 KiB
Groovy
43 lines
1.2 KiB
Groovy
rootProject.name = 'fints4kProject'
|
|
|
|
include ':fints4k'
|
|
|
|
|
|
/* UI */
|
|
|
|
include ':BankingUiCommon'
|
|
|
|
include ':fints4kBankingClient'
|
|
include ':hbci4jBankingClient'
|
|
|
|
include ':BankingPersistenceJson'
|
|
include ':LuceneBankingPersistence'
|
|
|
|
include ':BankingAndroidApp'
|
|
|
|
include ':BankingJavaFxControls'
|
|
include ':BankingJavaFxApp'
|
|
|
|
|
|
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(':BankingPersistenceJson').projectDir = "$rootDir/persistence/json/BankingPersistenceJson/" as File
|
|
project(':LuceneBankingPersistence').projectDir = "$rootDir/persistence/LuceneBankingPersistence/" as File
|
|
|
|
|
|
|
|
/* Tools */
|
|
|
|
include ':BankListCreator'
|
|
|
|
|
|
project(':BankListCreator').projectDir = "$rootDir/tools/BankListCreator/" as File
|