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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
fetch-depth: 0


- name: Set up JDK 8
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'temurin'


Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version: [v1.0.8](https://github.com/newrelic/newrelic-java-kotlin-coroutines/releases/tag/v1.0.8) | Created: 2025-09-04


## Version: [v1.0.6](https://github.com/newrelic/newrelic-java-kotlin-coroutines/releases/tag/v1.0.6) | Created: 2025-03-17


Expand Down
19 changes: 11 additions & 8 deletions Kotlin-Coroutines-Suspends/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
apply plugin: 'java'

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

// New Relic Java Agent dependencies
implementation 'com.newrelic.agent.java:newrelic-agent:6.4.1'
implementation 'com.newrelic.agent.java:newrelic-api:6.4.1'
implementation fileTree(include: ['*.jar'], dir: '../libs')
implementation fileTree(include: ['*.jar'], dir: '../test-lib')
}
Expand All @@ -24,9 +22,14 @@ jar {
}

verifyInstrumentation {
// Verifier plugin documentation:
// https://github.com/newrelic/newrelic-gradle-verify-instrumentation
// Example:
// passes 'javax.servlet:servlet-api:[2.2,2.5]'
// exclude 'javax.servlet:servlet-api:2.4.public_draft'
passes 'org.jetbrains.kotlinx:kotlinx-coroutines-core:[1.4.0,)'
passes 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:[1.4.0)'
excludeRegex '.*SNAPSHOT'
excludeRegex '.*alpha'
excludeRegex '.*Beta'
excludeRegex '.*-eap-.*'
excludeRegex '.*-native-.*'
excludeRegex '.*-M[0-9]'
excludeRegex '.*-rc'
excludeRegex '.*-RC'
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading