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 46
46
<scope >provided</scope >
47
47
</dependency >
48
48
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
-
58
49
</dependencies >
59
50
60
51
</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
+ */
2
4
package 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