17 lines
705 B
Groovy
17 lines
705 B
Groovy
rootProject.name = 'dbx-agents'
|
|
|
|
def infrastructureModules = ['common', 'test-support']
|
|
def driverModules = [
|
|
'access', 'dameng', 'kingbase', 'vastbase', 'goldendb', 'databend', 'databricks', 'saphana',
|
|
'teradata', 'vertica', 'firebird', 'exasol', 'oceanbase-oracle', 'gbase8a', 'gbase8s',
|
|
'bigquery', 'kylin', 'sundb', 'h2', 'h2-legacy', 'snowflake', 'trino', 'hive', 'spark',
|
|
'db2', 'informix', 'neo4j', 'cassandra', 'mongodb', 'highgo', 'tdengine', 'yashandb', 'oscar',
|
|
'iris', 'iotdb', 'etcd', 'zookeeper', 'kafka', 'sqlserver-legacy'
|
|
]
|
|
|
|
include(*(infrastructureModules + driverModules))
|
|
|
|
driverModules.each { name ->
|
|
project(":${name}").projectDir = file("drivers/${name}")
|
|
}
|