@@ -22,20 +22,21 @@ val communityProjects = setOf(
2222 " flamingock-community-bom" ,
2323 " flamingock-community" ,
2424 " flamingock-auditstore-mongodb-sync" ,
25- " flamingock-auditstore-mongodb-springdata" ,
2625 " flamingock-auditstore-couchbase" ,
27- " flamingock-auditstore-dynamodb" ,
28- " flamingock-importer"
26+ " flamingock-auditstore-dynamodb"
2927)
3028
3129val pluginProjects = setOf (
3230 " flamingock-springboot-integration"
3331)
3432
35- val transactionerProjects = setOf (
36- " sql -target-system" ,
33+ val targetSystemProjects = setOf (
34+ " nontransactional -target-system" ,
3735 " mongodb-sync-target-system" ,
38- " dynamodb-transactioner"
36+ " mongodb-springdata-target-system" ,
37+ " sql-target-system" ,
38+ " dynamodb-target-system" ,
39+ " couchbase-target-system"
3940)
4041
4142val templateProjects = setOf (
@@ -47,10 +48,11 @@ val utilProjects = setOf(
4748 " general-util" ,
4849 " test-util" ,
4950 " mongodb-util" ,
50- " dynamodb-util"
51+ " dynamodb-util" ,
52+ " couchbase-util"
5153)
5254
53- val allProjects = coreProjects + cloudProjects + communityProjects + pluginProjects + transactionerProjects + templateProjects + utilProjects
55+ val allProjects = coreProjects + cloudProjects + communityProjects + pluginProjects + targetSystemProjects + templateProjects + utilProjects
5456
5557// Project classification utilities
5658fun Project.isBomModule (): Boolean = name.endsWith(" -bom" )
@@ -62,7 +64,7 @@ fun Project.getProjectCategory(): String? = when (name) {
6264 in cloudProjects -> " cloud"
6365 in communityProjects -> " community"
6466 in pluginProjects -> " plugins"
65- in transactionerProjects -> " transactioners "
67+ in targetSystemProjects -> " targetSystems "
6668 in templateProjects -> " templates"
6769 in utilProjects -> " utils"
6870 else -> null
@@ -74,7 +76,7 @@ fun getProjectsForBundle(bundle: String?): Set<String> = when (bundle) {
7476 " cloud" -> cloudProjects
7577 " community" -> communityProjects
7678 " plugins" -> pluginProjects
77- " transactioners " -> transactionerProjects
79+ " targetSystems " -> targetSystemProjects
7880 " templates" -> templateProjects
7981 " utils" -> utilProjects
8082 " all" -> allProjects
@@ -86,7 +88,7 @@ extra["coreProjects"] = coreProjects
8688extra[" cloudProjects" ] = cloudProjects
8789extra[" communityProjects" ] = communityProjects
8890extra[" pluginProjects" ] = pluginProjects
89- extra[" transactionerProjects " ] = transactionerProjects
91+ extra[" targetSystemProjects " ] = targetSystemProjects
9092extra[" templateProjects" ] = templateProjects
9193extra[" utilProjects" ] = utilProjects
9294extra[" allProjects" ] = allProjects
0 commit comments