Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jlerbsc committed Jan 1, 2024
1 parent 13861e4 commit 6907316
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ Just add the following to your maven configuration or tailor to your own depende
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-symbol-solver-core</artifactId>
<version>3.25.7</version>
<version>3.25.8</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.25.7'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.25.8'
```

Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver.
Expand All @@ -68,14 +68,14 @@ Using the dependency above will add both JavaParser and JavaSymbolSolver to your
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
<version>3.25.7</version>
<version>3.25.8</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core:3.25.7'
implementation 'com.github.javaparser:javaparser-core:3.25.8'
```

Since version 3.6.17 the AST can be serialized to JSON.
Expand All @@ -87,14 +87,14 @@ There is a separate module for this:
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core-serialization</artifactId>
<version>3.25.7</version>
<version>3.25.8</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core-serialization:3.25.7'
implementation 'com.github.javaparser:javaparser-core-serialization:3.25.8'
```

## How To Compile Sources
Expand Down

0 comments on commit 6907316

Please sign in to comment.