Skip to content

Commit c9dd8fa

Browse files
authored
Update librarian (#87)
* Update librarian * Update librarian
1 parent bbead53 commit c9dd8fa

4 files changed

Lines changed: 19 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
import com.gradleup.librarian.gradle.Librarian
22

3+
buildscript {
4+
this.configurations.configureEach {
5+
resolutionStrategy {
6+
eachDependency {
7+
if (this.requested.name == "dokka-gradle-plugin") {
8+
//
9+
useVersion("2.1.0")
10+
}
11+
}
12+
}
13+
}
14+
}
15+
316
plugins {
417
alias(libs.plugins.kgp.jvm).apply(false)
518
alias(libs.plugins.librarian).apply(false)

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ org.gradle.caching=true
33
org.gradle.configuration-cache=true
44
org.gradle.configuration-cache.parallel=true
55
org.gradle.parallel=true
6+
#kotlin.stdlib.default.dependency=false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ agp9-kmp = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp
3535
#noinspection SimilarGradleDependency
3636
agp9-library = { id = "com.android.library", version.ref = "agp9" }
3737
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
38-
librarian = { id = "com.gradleup.librarian", version = "0.2.2-SNAPSHOT-a938d327d264e6ecf3880659ebc1401d09370897" }
38+
librarian = { id = "com.gradleup.librarian", version = "0.2.2-SNAPSHOT-61bc563d1de1a3cbe98eb68cefd241d5c46d5da7" }
3939
#noinspection NewerVersionAvailable
4040
nmcp = { id = "com.gradleup.nmcp", version.ref = "nmcp" }
4141
#noinspection NewerVersionAvailable

librarian.root.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ java.compatibility=11
22
kotlin.compatibility=2.0.21
33

44
kdoc.olderVersions=
5+
kdoc.projects=:tapmoc-gradle-plugin,:tapmoc-tasks
56

67
pom.groupId=com.gradleup.tapmoc
78
pom.version=0.4.2-SNAPSHOT
@@ -12,3 +13,6 @@ pom.license=MIT
1213

1314
gcs.bucket=gradleup
1415
gcs.prefix=m2
16+
17+
# kotlin-tasks pulls kotlin-stdlib 2.3
18+
checkDependenciesCompatibility=false

0 commit comments

Comments
 (0)