Skip to content

Commit

Permalink
Update README to 24.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Nov 15, 2023
1 parent 5da8dac commit b41de54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ using gradle write the following in the
`build.gradle` file (Groovy DSL)
```
dependencies {
compileOnly 'org.jetbrains:annotations:24.0.1'
compileOnly 'org.jetbrains:annotations:24.1.0'
}
```

or in the `build.gradle.kts` file (Kotlin DSL)
```
dependencies {
compileOnly("org.jetbrains:annotations:24.0.1")
compileOnly("org.jetbrains:annotations:24.1.0")
}
```
Expand All @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`:
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
<version>24.1.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down

0 comments on commit b41de54

Please sign in to comment.