Skip to content

Commit

Permalink
Add missing JMH dependencies to run from IntelliJ
Browse files Browse the repository at this point in the history
  • Loading branch information
Breus committed Dec 10, 2023
1 parent 1c806bf commit 8311146
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ repositories {

ext {
jUnitVersion = '5.10.1'
jmhVersion = '1.37'
}

java {
Expand All @@ -37,12 +38,16 @@ java {
}

dependencies {
nullabilityAnnotationsImplementation 'com.google.code.findbugs:jsr305:3.0.2'
nullabilityAnnotationsImplementation "com.google.code.findbugs:jsr305:3.0.2"

testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.16.0'
testImplementation "com.fasterxml.jackson.core:jackson-databind:2.16.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:${jUnitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${jUnitVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${jUnitVersion}"

jmh "org.openjdk.jmh:jmh-core:${jmhVersion}"
jmh "org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}"
jmhAnnotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}"
}

test {
Expand Down

0 comments on commit 8311146

Please sign in to comment.