Skip to content

Commit

Permalink
Add spring-validation and remove spring-docker-compose
Browse files Browse the repository at this point in the history
The spring-boot-starter-validation has been added to the spring conventions as it's more likely needed in every project while spring-boot-started-docker-compose has been removed as it's more likely to be a special use case scenario and should be individually added to specific project.
  • Loading branch information
joshbaskaran committed Jan 5, 2024
1 parent 81be38b commit ba5a563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/springboot-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ configurations {
repositories { mavenCentral() }

dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web")
compileOnly("org.projectlombok:lombok")
developmentOnly("org.springframework.boot:spring-boot-devtools")
developmentOnly("org.springframework.boot:spring-boot-docker-compose")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
annotationProcessor("org.projectlombok:lombok")
testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down

0 comments on commit ba5a563

Please sign in to comment.