Skip to content

Commit a4b5238

Browse files
authored
refactor: simplify package scanning by using wildcard for mapper packages (#28)
* refactor: rename artifactId and application name to 'datamate'; add model configuration and related services * refactor: simplify package scanning by using wildcard for mapper packages
1 parent f54afdd commit a4b5238

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

backend/services/main-application/src/main/java/com/datamate/main/DataMatePlatformApplication.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,14 @@
2727
"com.datamate.evaluation",
2828
"com.datamate.pipeline",
2929
"com.datamate.execution",
30-
"com.datamate.rag",
31-
"com.datamate.shared",
3230
"com.datamate.common"
3331
})
3432
@MapperScan(basePackages = {
3533
"com.datamate.collection.infrastructure.persistence.mapper",
3634
"com.datamate.datamanagement.infrastructure.persistence.mapper",
3735
"com.datamate.operator.infrastructure.persistence.mapper",
3836
"com.datamate.cleaning.infrastructure.persistence.mapper",
39-
"com.datamate.common.infrastructure.mapper"
37+
"com.datamate.**.mapper"
4038
})
4139
@EnableTransactionManagement
4240
@EnableAsync

0 commit comments

Comments
 (0)