Skip to content

Commit 7ff2e1b

Browse files
committed
updated to match what is going into the agent
1 parent f168d29 commit 7ff2e1b

File tree

152 files changed

+2810
-3983
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+2810
-3983
lines changed

Kotlin-Coroutines-Suspends/build.gradle

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
apply plugin: 'java'
55

66
dependencies {
7-
implementation group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.4.0'
7+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
88

99
// New Relic Java Agent dependencies
10-
implementation 'com.newrelic.agent.java:newrelic-agent:6.4.1'
11-
implementation 'com.newrelic.agent.java:newrelic-api:6.4.1'
1210
implementation fileTree(include: ['*.jar'], dir: '../libs')
1311
implementation fileTree(include: ['*.jar'], dir: '../test-lib')
1412
}
@@ -24,9 +22,14 @@ jar {
2422
}
2523

2624
verifyInstrumentation {
27-
// Verifier plugin documentation:
28-
// https://github.com/newrelic/newrelic-gradle-verify-instrumentation
29-
// Example:
30-
// passes 'javax.servlet:servlet-api:[2.2,2.5]'
31-
// exclude 'javax.servlet:servlet-api:2.4.public_draft'
25+
passes 'org.jetbrains.kotlinx:kotlinx-coroutines-core:[1.4.0,)'
26+
passes 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:[1.4.0)'
27+
excludeRegex '.*SNAPSHOT'
28+
excludeRegex '.*alpha'
29+
excludeRegex '.*Beta'
30+
excludeRegex '.*-eap-.*'
31+
excludeRegex '.*-native-.*'
32+
excludeRegex '.*-M[0-9]'
33+
excludeRegex '.*-rc'
34+
excludeRegex '.*-RC'
3235
}

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/SuspendIgnores.java

Lines changed: 0 additions & 76 deletions
This file was deleted.

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/Utils.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/tracing/CoroutinesPreMain.java

Lines changed: 0 additions & 84 deletions
This file was deleted.

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/tracing/SuspendClassAndMethod.java

Lines changed: 0 additions & 27 deletions
This file was deleted.

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/tracing/SuspendClassMatcher.java

Lines changed: 0 additions & 49 deletions
This file was deleted.

Kotlin-Coroutines-Suspends/src/main/java/com/newrelic/instrumentation/kotlin/coroutines/tracing/SuspendClassTransformer.java

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)