Skip to content

Commit cd1fba6

Browse files
committed
chore: plugin updates
1 parent 1d1ba1b commit cd1fba6

File tree

7 files changed

+54
-29
lines changed

7 files changed

+54
-29
lines changed

gradle/build-logic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
`kotlin-dsl`
88
embeddedKotlin("plugin.serialization")
99
alias(libs.plugins.jte)
10-
alias(libs.plugins.bestpractices)
1110
alias(libs.plugins.benmanes)
1211
alias(libs.plugins.spotless)
12+
alias(libs.plugins.autonomousapps.bestpractices)
1313
// alias(libs.plugins.kotlin.dsl)
1414
}
1515

gradle/build-logic/src/main/kotlin/plugins/graalvm.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import org.jetbrains.kotlin.gradle.utils.extendsFrom
1111
plugins {
1212
application
1313
org.graalvm.buildtools.native
14-
// com.autonomousapps.`dependency-analysis`
1514
}
1615

1716
val quickBuildEnabled = project.hasProperty("quick")
@@ -184,7 +183,6 @@ tasks {
184183

185184
nativeCompile { finalizedBy(archiveTgz) }
186185

187-
// dependencyAnalysis { issues { this.all { onAny { severity("warn") } } } }
188186
// shadowJar { mergeServiceFiles() }
189187
}
190188

gradle/build-logic/src/main/kotlin/plugins/root.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ plugins {
1616
dev.iurysouza.modulegraph
1717
com.dorongold.`task-tree`
1818
// id("gg.jte.gradle")
19+
// com.autonomousapps.`dependency-analysis`
1920
}
2021

2122
if (hasCleanTask) {
@@ -36,8 +37,8 @@ gradle.projectsEvaluated { logger.lifecycle(magenta("=== Projects Configuration
3637

3738
idea {
3839
module {
39-
isDownloadJavadoc = false
40-
isDownloadSources = false
40+
isDownloadJavadoc = true
41+
isDownloadSources = true
4142
}
4243
project.vcs = "Git"
4344
}
@@ -188,5 +189,7 @@ tasks {
188189
// distributionUrl = "${Repo.GRADLE_DISTRO}/gradle-$gradleVersion-bin.zip"
189190
}
190191

192+
// dependencyAnalysis { issues { this.all { onAny { severity("warn") } } } }
193+
191194
defaultTasks("clean", "tasks", "--all")
192195
}

gradle/build-logic/src/main/kotlin/settings/repos.settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ plugins {
5050
id("com.gradle.develocity")
5151
id("org.gradle.toolchains.foojay-resolver")
5252
id("org.jetbrains.kotlinx.kover.aggregation")
53+
id("com.autonomousapps.build-health")
5354
id("com.javiersc.semver")
5455
// Include other pre-compiled settings plugin
5556
id("settings.include")

gradle/kotlin-js-store/package-lock.json

Lines changed: 28 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradle/libs.versions.toml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ kotlinx-multik = "0.2.3"
4242
kotlinx-dataframe = "0.13.1"
4343
kotlinx-kandy = "0.5.0"
4444
evas = "1.0.0-RC"
45+
kopy = "0.6.0+2.0.20"
4546
karakum = "1.0.0-alpha.40-K2"
4647
seskar = "3.20.0"
4748
spring-boot = "3.3.2"
@@ -184,8 +185,9 @@ shadow = "8.3.0"
184185
spotless = "7.0.0.BETA2"
185186
semver-plugin = "0.7.0"
186187
tasktree = "4.0.0"
187-
dependency-analysis = "1.33.0"
188-
best-practices-plugin = "0.10"
188+
sigstore = "1.0.0"
189+
autonomousapps-depanalysis = "2.0.0"
190+
autonomousapps-bestpractices = "0.10"
189191
graalvm-nativeimage = "0.10.2"
190192
github-depgraph = "0.1.0"
191193
github-changelog = "2.2.0"
@@ -232,8 +234,10 @@ build-nexus-plugin = { module = "io.github.gradle-nexus:publis
232234
build-spotless-plugin = { module = "com.diffplug.spotless:spotless-plugin-gradle" , version.ref = "spotless"}
233235
build-shadow-plugin = { module = "com.gradleup.shadow:shadow-gradle-plugin" , version.ref = "shadow"}
234236
build-tasktree = { module = "com.dorongold.plugins:task-tree" , version.ref = "tasktree" }
235-
build-dependencyanalysis = { module = "com.autonomousapps:dependency-analysis-gradle-plugin" , version.ref = "dependency-analysis" }
236-
build-bestpractices-plugin = { module = "com.autonomousapps:plugin-best-practices-plugin" , version.ref = "best-practices-plugin" }
237+
build-sigstore = { module = "dev.sigstore:sigstore-gradle-sign-plugin" , version.ref = "sigstore" }
238+
build-sigstore-base = { module = "dev.sigstore:sigstore-gradle-sign-base-plugin" , version.ref = "sigstore" }
239+
build-dependencyanalysis = { module = "com.autonomousapps:dependency-analysis-gradle-plugin" , version.ref = "autonomousapps-depanalysis" }
240+
build-bestpractices-plugin = { module = "com.autonomousapps:plugin-best-practices-plugin" , version.ref = "autonomousapps-bestpractices" }
237241
build-semver-plugin = { module = "com.javiersc.semver:semver-gradle-plugin" , version.ref = "semver-plugin" }
238242
build-zip-prefixer = { module = "net.e175.klaus:zip-prefixer" , version.ref = "zip-prefixer" }
239243
build-foojay-resolver = { module = "org.gradle.toolchains:foojay-resolver" , version.ref = "foojay-resolver" }
@@ -564,10 +568,10 @@ jlama-core = { module = "com.github.tjake:jlama-core"
564568
jlama-native = { module = "com.github.tjake:jlama-native" , version.ref = "jlama" }
565569

566570
[bundles]
567-
ajalt = ["ajalt-mordant", "ajalt-mordant-coroutines", "ajalt-colormath", "ajalt-clikt"]
568-
json-extra = ["kotlinx-jsonpath", "kotlinx-json-schema"]
569-
keystore = ["sslcontext-kickstart", "directory-keystore"]
570-
opentelemetry = ["otel-extension-kotlin","otel-instr-annotations","otel-instr-extension-api","otel-instr-ktor"]
571+
ajalt = ["ajalt-mordant", "ajalt-mordant-coroutines", "ajalt-colormath", "ajalt-clikt"]
572+
json-extra = ["kotlinx-jsonpath", "kotlinx-json-schema"]
573+
keystore = ["sslcontext-kickstart", "directory-keystore"]
574+
opentelemetry = ["otel-extension-kotlin","otel-instr-annotations","otel-instr-extension-api","otel-instr-ktor"]
571575

572576

573577
[plugins]
@@ -588,7 +592,10 @@ seskar = { id = "io.github.turansky.seskar"
588592
jte = { id = "gg.jte.gradle" , version.ref = "jte" }
589593
benmanes = { id = "com.github.ben-manes.versions" , version.ref = "benmanes" }
590594
spotless = { id = "com.diffplug.spotless" , version.ref = "spotless" }
591-
bestpractices = { id = "com.autonomousapps.plugin-best-practices-plugin" , version.ref = "best-practices-plugin" }
595+
autonomousapps-depanalysis = { id = "com.autonomousapps.dependency-analysis" , version.ref = "autonomousapps-depanalysis" }
596+
autonomousapps-bestpractices = { id = "com.autonomousapps.plugin-best-practices-plugin" , version.ref = "autonomousapps-bestpractices" }
597+
sigstore = { id = "dev.sigstore.sign" , version.ref = "sigstore" }
598+
sigstore-base = { id = "dev.sigstore.sign-base" , version.ref = "sigstore" }
592599
graalvm-nativeimage = { id = "org.graalvm.buildtools.native" , version.ref = "graalvm-nativeimage"}
593600
buildkonfig = { id = "com.codingfeline.buildkonfig" , version.ref = "buildkonfig"}
594601
detekt = { id = "io.github.detekt.gradle.compiler-plugin" , version.ref = "detekt"}
@@ -597,4 +604,5 @@ kobweb-library = { id = "com.varabyte.kobweb.library"
597604
kobwebx-markdown = { id = "com.varabyte.kobwebx.markdown" , version.ref = "kobweb" }
598605
spring-boot = { id = "org.springframework.boot" , version.ref = "spring-boot" }
599606
spring-depmgmt = { id = "io.spring.dependency-management" , version.ref = "spring-depmgmt" }
600-
mappie = { id = "tech.mappie.plugin" , version.ref = "mappie" }
607+
mappie = { id = "tech.mappie.plugin" , version.ref = "mappie" }
608+
kopy = { id = "com.javiersc.kotlin.kopy" , version.ref = "kopy" }

shared/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ plugins {
66
plugins.kotlin.mpp
77
plugins.publishing
88
alias(libs.plugins.mappie)
9+
alias(libs.plugins.kopy)
910
}
1011

1112
description = "Shared common module for all projects"

0 commit comments

Comments
 (0)