Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jlerbsc committed Dec 31, 2022
1 parent 6e76b53 commit da3540b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions readme.md
Expand Up @@ -37,14 +37,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.24.9</version>
<version>3.24.10</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.24.9'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.24.10'
```

Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver.
Expand All @@ -59,14 +59,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.24.9</version>
<version>3.24.10</version>
</dependency>
```

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core:3.24.9'
implementation 'com.github.javaparser:javaparser-core:3.24.10'
```

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

**Gradle**:

```
implementation 'com.github.javaparser:javaparser-core-serialization:3.24.9'
implementation 'com.github.javaparser:javaparser-core-serialization:3.24.10'
```

## How To Compile Sources
Expand Down

0 comments on commit da3540b

Please sign in to comment.