Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .gitmodules
Empty file.
4 changes: 0 additions & 4 deletions .lgtm.yml

This file was deleted.

1 change: 0 additions & 1 deletion agent/agent-tooling/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ dependencies {
testImplementation("org.assertj:assertj-core")
testImplementation("org.awaitility:awaitility")
testImplementation("org.mockito:mockito-core")
testImplementation("io.github.hakky54:logcaptor")

testCompileOnly("com.google.code.findbugs:jsr305")
}
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("idea")

id("com.github.ben-manes.versions")
id("ai.spotless-conventions")
}

Expand Down
25 changes: 0 additions & 25 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

plugins {
`java-platform`

id("com.github.ben-manes.versions")
}

data class DependencySet(val group: String, val version: String, val modules: List<String>)
Expand Down Expand Up @@ -64,14 +60,12 @@ val CORE_DEPENDENCIES = listOf(
val DEPENDENCIES = listOf(
"ch.qos.logback:logback-classic:1.3.15", // logback 1.4+ requires Java 11+
"ch.qos.logback.contrib:logback-json-classic:0.1.5",
"com.uber.nullaway:nullaway:0.12.7",
"commons-codec:commons-codec:1.18.0",
"org.apache.commons:commons-text:1.13.1",
"com.google.code.gson:gson:2.13.1",
"com.azure:azure-core-test:1.26.2", // this is not included in azure-sdk-bom
"org.assertj:assertj-core:3.27.3",
"org.awaitility:awaitility:4.3.0",
"io.github.hakky54:logcaptor:2.11.0",
"io.opentelemetry.contrib:opentelemetry-jfr-connection:${otelContribVersion}-alpha",
"io.opentelemetry.contrib:opentelemetry-runtime-attach-core:${otelContribVersion}-alpha",
"com.google.code.findbugs:jsr305:3.0.2",
Expand Down Expand Up @@ -103,22 +97,3 @@ dependencies {
}
}
}

fun isNonStable(version: String): Boolean {
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) }
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
val isGuava = version.endsWith("-jre")
val isStable = stableKeyword || regex.matches(version) || isGuava
return isStable.not()
}

tasks {
named<DependencyUpdatesTask>("dependencyUpdates") {
revision = "release"
checkConstraints = true

rejectVersionIf {
isNonStable(candidate.version)
}
}
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import org.apache.tools.ant.taskdefs.condition.Os

pluginManagement {
plugins {
id("com.github.ben-manes.versions") version "0.52.0"
id("com.github.jk1.dependency-license-report") version "2.9"
id("me.champeau.jmh") version "0.7.3"
id("com.gradle.plugin-publish") version "1.3.1"
Expand Down