Skip to content

Commit be3c332

Browse files
committed
Adjust README to use more links and syntax highlights for xml blocks
1 parent 58067df commit be3c332

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The documentation for this release is included in the _docs_ directory of the di
2222

2323
## Release Notes
2424

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).
2626

2727
## System Requirements
2828

@@ -37,40 +37,40 @@ provided by the JDK) as implementation. Just add a supported logging library to
3737
Logging will delegate any log requests to that provider.
3838

3939
* 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+
```
4747
You also need an API and implementation of the Unified Expression Language. These dependencies must be explicitly added in an SE environment.
4848
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+
```
5656
* Jakarta Validation defines integration points with [CDI](http://jcp.org/en/jsr/detail?id=346). If your application runs
5757
in an environment which does not provide this integration out of the box, you may use the Hibernate Validator CDI portable
5858
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+
```
6666
* _hibernate-validator-annotation-processor-&lt;version&gt;.jar_ is an optional jar which can be integrated with your build
6767
environment respectively IDE to verify that constraint annotations are correctly used. Refer to the [online
6868
documentation](https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#validator-annotation-processor) for more information.
6969

7070
## Licensing
7171

7272
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.
7474

7575
## Build from Source
7676

0 commit comments

Comments
 (0)