We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da8dac commit b41de54Copy full SHA for b41de54
README.md
@@ -17,15 +17,15 @@ using gradle write the following in the
17
`build.gradle` file (Groovy DSL)
18
```
19
dependencies {
20
- compileOnly 'org.jetbrains:annotations:24.0.1'
+ compileOnly 'org.jetbrains:annotations:24.1.0'
21
}
22
23
24
25
or in the `build.gradle.kts` file (Kotlin DSL)
26
27
28
- compileOnly("org.jetbrains:annotations:24.0.1")
+ compileOnly("org.jetbrains:annotations:24.1.0")
29
30
31
@@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`:
34
<dependency>
35
<groupId>org.jetbrains</groupId>
36
<artifactId>annotations</artifactId>
37
- <version>24.0.1</version>
+ <version>24.1.0</version>
38
<scope>provided</scope>
39
</dependency>
40
0 commit comments