-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hibernate-validator managed version and api Gradle configuration (#333)
* Use Kotlin DSL * make hibernate-validator a managed version * hibernate validator an api dependency
- Loading branch information
Showing
3 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
plugins { | ||
id("io.micronaut.build.internal.hibernate-validator-module") | ||
} | ||
|
||
dependencies { | ||
annotationProcessor(mn.micronaut.graal) | ||
annotationProcessor(mn.micronaut.inject.java) | ||
compileOnly(mn.micronaut.router) | ||
api(libs.hibernate.validator) | ||
implementation(mn.micronaut.inject) | ||
implementation(mnValidation.micronaut.validation) | ||
|
||
testAnnotationProcessor(mnValidation.micronaut.validation.processor) | ||
testCompileOnly(mnValidation.micronaut.validation.processor) | ||
testAnnotationProcessor(mn.micronaut.inject.java) | ||
testCompileOnly(mn.micronaut.inject.groovy) | ||
testImplementation(mn.micronaut.http.server.netty) | ||
testRuntimeOnly(mn.snakeyaml) | ||
testImplementation(mnSerde.micronaut.serde.jackson) | ||
} |