Skip to content

Commit

Permalink
Clarify usage of Apache commons lang in README.md (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
loadedice authored Mar 1, 2023
1 parent bb63267 commit 05fc14a
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,13 @@ Here are the dependencies.
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.common-lang3}</version>
</dependency>
```

Note: Apache commons lang is included as a compile time dependency but is not
required anymore. It is still included for the sake of older projects that
depend on it as an accidental transitive runtime dependency. It is encouraged to
exclude it as shown below and will be removed in a future release.

#### Community

This library is very active with a lot of contributors. New features and bug fixes are handled quickly by the team members. Because it is an essential dependency of the [light-4j](https://github.com/networknt/light-4j) framework in the same GitHub organization, it will be evolved and maintained along with the framework.
Expand All @@ -83,6 +82,12 @@ Maven:
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.77</version>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
</exclusions>
</dependency>
```

Expand Down

0 comments on commit 05fc14a

Please sign in to comment.