Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jlerbsc committed Apr 4, 2024
1 parent 0edfe12 commit d122055
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.9</version>
<version>3.25.10</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.25.9'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.25.10'
```

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.9</version>
<version>3.25.10</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core:3.25.9'
implementation 'com.github.javaparser:javaparser-core:3.25.10'
```

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.9</version>
<version>3.25.10</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core-serialization:3.25.9'
implementation 'com.github.javaparser:javaparser-core-serialization:3.25.10'
```

## How To Compile Sources
Expand Down

0 comments on commit d122055

Please sign in to comment.