1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- plugins {
- `kotlin-dsl`
- // When updating, update below in dependencies too
- id("com.diffplug.spotless") version "6.23.3"
- }
- spotless {
- java {
- googleJavaFormat()
- licenseHeaderFile(
- rootProject.file("../buildscripts/spotless.license.java"),
- "(package|import|public)"
- )
- target("src/**/*.java")
- }
- kotlinGradle {
- // not sure why it's not using the indent settings from .editorconfig
- ktlint().editorConfigOverride(mapOf(
- "indent_size" to "2",
- "continuation_indent_size" to "2",
- "max_line_length" to "160",
- "ktlint_standard_no-wildcard-imports" to "disabled",
- // ktlint does not break up long lines, it just fails on them
- "ktlint_standard_max-line-length" to "disabled",
- // ktlint makes it *very* hard to locate where this actually happened
- "ktlint_standard_trailing-comma-on-call-site" to "disabled",
- // depends on ktlint_standard_wrapping
- "ktlint_standard_trailing-comma-on-declaration-site" to "disabled",
- // also very hard to find out where this happens
- "ktlint_standard_wrapping" to "disabled"
- ))
- target("**/*.gradle.kts")
- }
- }
- repositories {
- mavenCentral()
- gradlePluginPortal()
- }
- tasks.withType<Test>().configureEach {
- useJUnitPlatform()
- }
- dependencies {
- implementation(gradleApi())
- implementation(localGroovy())
- // dependencySubstitution is applied to this dependency (see seetings.gradle.kts)
- implementation("io.opentelemetry.instrumentation:gradle-plugins")
- implementation("org.eclipse.aether:aether-connector-basic:1.1.0")
- implementation("org.eclipse.aether:aether-transport-http:1.1.0")
- implementation("org.apache.maven:maven-aether-provider:3.3.9")
- // When updating, update above in plugins too
- implementation("com.diffplug.spotless:spotless-plugin-gradle:6.23.3")
- implementation("com.google.guava:guava:33.0.0-jre")
- implementation("gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.8.18")
- implementation("com.github.johnrengelman:shadow:8.1.1")
- implementation("org.apache.httpcomponents:httpclient:4.5.14")
- implementation("com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.16.1")
- implementation("org.owasp:dependency-check-gradle:9.0.8")
- implementation("ru.vyarus:gradle-animalsniffer-plugin:1.7.1")
- // When updating, also update dependencyManagement/build.gradle.kts
- implementation("net.bytebuddy:byte-buddy-gradle-plugin:1.14.11")
- implementation("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.0")
- implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.2")
- implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.1.0")
- implementation("net.ltgt.gradle:gradle-nullaway-plugin:1.6.0")
- implementation("me.champeau.gradle:japicmp-gradle-plugin:0.4.2")
- testImplementation(enforcedPlatform("org.junit:junit-bom:5.10.1"))
- testImplementation("org.junit.jupiter:junit-jupiter-api")
- testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
- testImplementation("org.assertj:assertj-core:3.25.1")
- }
|