mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 02:12:08 +08:00
- 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
7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
|
|
dependencies {
|
|
compileOnly(libs.springBootStarter.jpa)
|
|
compileOnly(libs.org.mapstruct)
|
|
implementation(project(Modules.Webmvc.DTO))
|
|
}
|