Skip to content

Commit 3211070

Browse files
committed
update readme
1 parent acd6fc1 commit 3211070

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2667378.svg)](https://doi.org/10.5281/zenodo.2667378)
1515

1616

17-
This project contains a set of libraries implementing a Java 1.0 - Java 24 Parser with advanced analysis functionalities.
17+
This project contains a set of libraries implementing a Java 1.0 - Java 25 Parser with advanced analysis functionalities.
1818

1919
Our main site is at [JavaParser.org](http://javaparser.org)
2020

@@ -46,14 +46,14 @@ Just add the following to your maven configuration or tailor to your own depende
4646
<dependency>
4747
<groupId>com.github.javaparser</groupId>
4848
<artifactId>javaparser-symbol-solver-core</artifactId>
49-
<version>3.27.1</version>
49+
<version>3.28.0</version>
5050
</dependency>
5151
```
5252

5353
**Gradle**:
5454

5555
```
56-
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.27.1'
56+
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.28.0'
5757
```
5858

5959
Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver.
@@ -68,14 +68,14 @@ Using the dependency above will add both JavaParser and JavaSymbolSolver to your
6868
<dependency>
6969
<groupId>com.github.javaparser</groupId>
7070
<artifactId>javaparser-core</artifactId>
71-
<version>3.27.1</version>
71+
<version>3.28.0</version>
7272
</dependency>
7373
```
7474

7575
**Gradle**:
7676

7777
```
78-
implementation 'com.github.javaparser:javaparser-core:3.27.1'
78+
implementation 'com.github.javaparser:javaparser-core:3.28.0'
7979
```
8080

8181
Since version 3.6.17 the AST can be serialized to JSON.
@@ -87,14 +87,14 @@ There is a separate module for this:
8787
<dependency>
8888
<groupId>com.github.javaparser</groupId>
8989
<artifactId>javaparser-core-serialization</artifactId>
90-
<version>3.27.1</version>
90+
<version>3.28.0</version>
9191
</dependency>
9292
```
9393

9494
**Gradle**:
9595

9696
```
97-
implementation 'com.github.javaparser:javaparser-core-serialization:3.27.1'
97+
implementation 'com.github.javaparser:javaparser-core-serialization:3.28.0'
9898
```
9999

100100
## How To Compile Sources

0 commit comments

Comments
 (0)