@@ -66,9 +66,11 @@ collection of random bytes called a nonce.
6666
6767### JDK Version
6868
69- This project uses Java 17 Language Level api, but builds with Java 17, Java 21 and Java 25, so creates 3 different artifacts per component.
70- All have the same group id ` io.nats.nkeys ` , and the same version but have different artifact names.
71-
69+ This project uses Java 17 Language Level api,
70+ but builds with Java 17, Java 21 and Java 25,
71+ so creates 3 different artifacts per component.
72+ All have the same group id ` io.nats.nkeys ` ,
73+ and the same version but have different artifact names.
7274
7375
7476| Component | JDK 17 | JDK 21 | JDK 25 |
@@ -81,15 +83,17 @@ All have the same group id `io.nats.nkeys`, and the same version but have differ
8183
8284The NATS client is available in the Maven central repository,
8385and can be imported as a standard dependency in your ` build.gradle ` or ` pom.xml ` file,
84- The examples shown use the jdk 17 version. To use the JDK 21 or 25 version just change the artifact id.
85- The _ regular_ and _ lts_ libraries automatically depend on the _ core_ of the same JDK.
86+ The examples show use of the jdk 17 version.
87+ * To use the JDK 21 or 25 version just change the artifact id.
88+ * To use the LTS instead of the Regular version, change regular to lts
89+
90+ The ** regular** and ** lts** libraries automatically depend on the ** core** of the same JDK.
8691
8792#### Gradle
8893
8994``` groovy
9095dependencies {
91- implementation 'io.nats.nkeys:core-jdk17:3.0.2'
92- implementation 'io.nats.nkeys:regular-jdk17:3.0.2'
96+ implementation 'io.nats.nkeys:regular-jdk17:3.0.3'
9397}
9498```
9599
@@ -108,12 +112,9 @@ repositories {
108112
109113``` xml
110114<dependency >
111- <groupId >io.nats.nkeys</groupId >
112- <artifactId >core-jdk17</artifactId >
113- <version >3.0.2</version >
114115 <groupId >io.nats.nkeys</groupId >
115116 <artifactId >regular-jdk17</artifactId >
116- <version >3.0.2 </version >
117+ <version >3.0.3 </version >
117118</dependency >
118119```
119120
0 commit comments