@@ -22,7 +22,7 @@ The documentation for this release is included in the _docs_ directory of the di
22
22
23
23
## Release Notes
24
24
25
- The full list of changes for this release can be found in changelog.txt.
25
+ The full list of changes for this release can be found in [ changelog.txt] ( changelog.txt ) .
26
26
27
27
## System Requirements
28
28
@@ -37,40 +37,40 @@ provided by the JDK) as implementation. Just add a supported logging library to
37
37
Logging will delegate any log requests to that provider.
38
38
39
39
* Add the following artifact to your Maven/Ivy/Gradle dependency list:
40
-
41
- <dependency>
42
- <groupId>org.hibernate.validator</groupId>
43
- <artifactId>hibernate-validator</artifactId>
44
- <version>9.1.0.Alpha2</version>
45
- </dependency>
46
-
40
+ ``` xml
41
+ <dependency >
42
+ <groupId >org.hibernate.validator</groupId >
43
+ <artifactId >hibernate-validator</artifactId >
44
+ <version >9.1.0.Alpha2</version >
45
+ </dependency >
46
+ ```
47
47
You also need an API and implementation of the Unified Expression Language. These dependencies must be explicitly added in an SE environment.
48
48
In a Jakarta EE environment, they are often already provided.
49
-
50
- <dependency>
51
- <groupId>org.glassfish.expressly</groupId>
52
- <artifactId>expressly</artifactId>
53
- <version>6.0.0</version>
54
- </dependency>
55
-
49
+ ```xml
50
+ <dependency >
51
+ <groupId >org.glassfish.expressly</groupId >
52
+ <artifactId >expressly</artifactId >
53
+ <version >6.0.0</version >
54
+ </dependency >
55
+ ```
56
56
* Jakarta Validation defines integration points with [CDI](http://jcp.org/en/jsr/detail?id=346). If your application runs
57
57
in an environment which does not provide this integration out of the box, you may use the Hibernate Validator CDI portable
58
58
extension by adding the following dependency:
59
-
60
- <dependency>
61
- <groupId>org.hibernate.validator</groupId>
62
- <artifactId>hibernate-validator-cdi</artifactId>
63
- <version>9.1.0.Alpha2</version>
64
- </dependency>
65
-
59
+ ```xml
60
+ <dependency >
61
+ <groupId >org.hibernate.validator</groupId >
62
+ <artifactId >hibernate-validator-cdi</artifactId >
63
+ <version >9.1.0.Alpha2</version >
64
+ </dependency >
65
+ ```
66
66
* _hibernate-validator-annotation-processor-< version> .jar_ is an optional jar which can be integrated with your build
67
67
environment respectively IDE to verify that constraint annotations are correctly used. Refer to the [online
68
68
documentation](https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#validator-annotation-processor) for more information.
69
69
70
70
## Licensing
71
71
72
72
Hibernate Validator itself as well as the Jakarta Validation API and TCK are all provided and distributed under
73
- the Apache Software License 2.0. Refer to license.txt for more information.
73
+ the Apache Software License 2.0. Refer to [ license.txt](license.txt) for more information.
74
74
75
75
## Build from Source
76
76
0 commit comments