Skip to content

Commit

Permalink
Upgrading JFR daemon (#1561)
Browse files Browse the repository at this point in the history
  • Loading branch information
meiao authored Oct 20, 2023
1 parent 01aa79a commit 7435d77
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'com.github.prokod.gradle-crossbuild' version '0.14.1' apply false
id "org.jetbrains.kotlin.jvm" version "1.6.20" apply false
id "org.jetbrains.kotlin.jvm" version "1.8.21" apply false
id "com.newrelic.gradle-verify-instrumentation-plugin" version "4.0" apply false
id "com.newrelic.gradle-compatibility-doc-plugin" version "1.1" apply false
id "com.github.spotbugs" version "5.0.14" apply false
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/apache-struts-2.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
implementation(project(":agent-bridge"))
implementation("org.apache.struts:struts2-core:2.5")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/spring-3.0.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation(project(":agent-bridge"))
implementation("org.springframework:spring-context:3.0.0.RELEASE")
implementation("org.springframework:spring-web:3.0.0.RELEASE")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/spring-4.0.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation(project(":agent-bridge"))
implementation("org.springframework:spring-context:4.0.0.RELEASE")
implementation("org.springframework:spring-web:4.0.0.RELEASE")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/spring-4.2.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation(project(":agent-bridge"))
implementation("org.springframework:spring-context:4.2.0.RELEASE")
implementation("org.springframework:spring-web:4.2.0.RELEASE")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/spring-4.3.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation(project(":agent-bridge"))
implementation("org.springframework:spring-context:4.3.0.RELEASE")
implementation("org.springframework:spring-web:4.3.0.RELEASE")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/spring-cache-3.1.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
implementation(project(":agent-bridge"))
implementation("org.springframework:spring-context:3.1.0.RELEASE")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.20")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.21")
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion newrelic-agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
transitive = false
}
shadowIntoJar("com.newrelic.agent.java:newrelic-module-util-java:2.1")
shadowIntoJar("com.newrelic:jfr-daemon:1.9.1")
shadowIntoJar("com.newrelic:jfr-daemon:1.11.0")
shadowIntoJar "org.ow2.asm:asm:$asmVersion"
shadowIntoJar "org.ow2.asm:asm-tree:$asmVersion"
shadowIntoJar "org.ow2.asm:asm-commons:$asmVersion"
Expand Down

0 comments on commit 7435d77

Please sign in to comment.