forgeboot/forgeboot-webmvc/spec/build.gradle.kts
gewuyou b4cfc9865c feat(spec): Add CRUD services and repository specifications
- Added the CrudRepositorySpec API to define CRUD operations and normalized queries
- Implement the CrudServiceImplSpec class to provide a generic implementation of CRUD services
- Define the CrudServiceSpec interface to standardize the operation of the CRUD service
- Add .gitattributes and .gitignore files to configure the code style and ignore files
- Create a build.gradle.kts file and add project dependencies
2025-05-29 22:15:32 +08:00

7 lines
146 B
Plaintext

dependencies {
compileOnly(libs.springBootStarter.jpa)
compileOnly(libs.org.mapstruct)
implementation(project(Modules.Webmvc.DTO))
}