2021-07-14 11:18:11 +02:00
|
|
|
plugins {
|
|
|
|
id "io.morethan.jmhreport" version "0.9.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
jmhReport {
|
|
|
|
jmhResultPath = project.file('build/reports/jmh/result.json')
|
|
|
|
jmhReportOutput = project.file('build/reports/jmh')
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-10-12 11:41:30 +02:00
|
|
|
implementation project(':datastructures-json-tiny')
|
2021-07-14 11:18:11 +02:00
|
|
|
implementation project(':datastructures-json-dsl')
|
|
|
|
implementation project(':datastructures-json-flat')
|
|
|
|
implementation project(':datastructures-json-iterator')
|
|
|
|
implementation project(':datastructures-json-minimal')
|
|
|
|
implementation project(':datastructures-json-noggit')
|
|
|
|
implementation project(':datastructures-json-simple')
|
|
|
|
implementation "com.google.code.gson:gson:${project.property('gson.version')}"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
|
|
|
implementation "org.json:json:${project.property('orgjson.version')}"
|
|
|
|
}
|