Replace org.jetbrains:annotations library with an com.example:exampleLibrary placeholder

This commit is contained in:
Jakub Chrzanowski 2024-05-30 10:04:33 +02:00
parent 8abc7ff746
commit 04e1e51d36
No known key found for this signature in database
GPG Key ID: C39095BFD769862E
3 changed files with 4 additions and 3 deletions

View File

@ -10,6 +10,7 @@
- Change since/until build to `232-242.*` (2023.2-2024.2.*)
- Upgrade Gradle Wrapper to `8.7`
- Update Kover configuration
- Replace `org.jetbrains:annotations` library with an `com.example:exampleLibrary` placeholder
- Dependencies - upgrade `org.jetbrains.intellij` to `1.17.3`
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `2.0.0`
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.8.0`

View File

@ -23,7 +23,7 @@ repositories {
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
dependencies {
// implementation(libs.annotations)
// implementation(libs.exampleLibrary)
}
// Set the JVM language level used to build the project.

View File

@ -1,6 +1,6 @@
[versions]
# libraries
annotations = "24.1.0"
exampleLibrary = "24.1.0"
# plugins
kotlin = "2.0.0"
@ -10,7 +10,7 @@ qodana = "2024.1.5"
kover = "0.8.0"
[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
exampleLibrary = { group = "com.example", name = "exampleLibrary", version.ref = "exampleLibrary" }
[plugins]
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }