File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed
io/avaje/http/hibernate/validator Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 4646 <scope >provided</scope >
4747 </dependency >
4848
49- <!-- java annotation processors -->
50-
51- <dependency >
52- <groupId >io.avaje</groupId >
53- <artifactId >avaje-inject-generator</artifactId >
54- <version >8.12-RC1</version >
55- <scope >provided</scope >
56- </dependency >
57-
5849 </dependencies >
5950
6051</project >
Original file line number Diff line number Diff line change 1- @ InjectModule (name = "bean-validator" , provides = io .avaje .http .api .Validator .class )
1+ /**
2+ * Provides a Hibernate Validator to use with avaje-http.
3+ */
24package io .avaje .http .hibernate .validator ;
3-
4- import io .avaje .inject .InjectModule ;
Original file line number Diff line number Diff line change 1+ import io .avaje .http .hibernate .validator .ValidatorProvider ;
2+
3+ module io .avaje .http .hibernate .validator {
4+
5+ exports io .avaje .http .hibernate .validator ;
6+
7+ requires io .avaje .http .api ;
8+ requires io .avaje .inject ;
9+ requires jakarta .validation ;
10+
11+ provides io .avaje .inject .spi .Plugin with ValidatorProvider ;
12+ }
You can’t perform that action at this time.
0 commit comments