Skip to content

Commit 13f2d81

Browse files
committed
doc: 📝 Adds usage documentation for adding dependency to a Maven project
1 parent 53f43d4 commit 13f2d81

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
# java-data-url-handler
77

8-
When adding this library as a dependency in your project, you will be able to handle "data URLs" ([RFC-2397](https://datatracker.ietf.org/doc/html/rfc2397)) in your application.
8+
When adding this library in your classpath, you will be able to handle "data URLs" ([RFC-2397](https://datatracker.ietf.org/doc/html/rfc2397)) in your application.
99

1010
## Prerequisites
1111

12-
You need Java >= 11 to use this library.
12+
You need Java 11 to use this library.
1313

1414
## Usage
1515

@@ -47,3 +47,18 @@ The output of the code above will be:
4747
```
4848
Hello, World!
4949
```
50+
51+
## Add dependency to your project
52+
53+
To add this library to your Maven project:
54+
55+
```xml
56+
<dependency>
57+
<groupId>io.github.jycr</groupId>
58+
<artifactId>java-data-url-handler</artifactId>
59+
<version>${java-data-url-handler.version}</version>
60+
</dependency>
61+
```
62+
63+
Latest available version: ![Version on Maven Central](https://img.shields.io/maven-central/v/io.github.jycr/java-data-url-handler?style=flat-square&label=%20&color=%23FFFFFF
64+
)

0 commit comments

Comments
 (0)