2021-07-14 11:18:11 +02:00
|
|
|
plugins {
|
|
|
|
id "io.morethan.jmhreport" version "0.9.0"
|
2022-11-05 20:32:41 +01:00
|
|
|
id "org.cyclonedx.bom" version "1.7.2"
|
|
|
|
id "com.github.spotbugs" version "5.0.13"
|
|
|
|
id "checkstyle"
|
|
|
|
id "pmd"
|
2021-07-14 11:18:11 +02:00
|
|
|
}
|
|
|
|
|
2022-11-05 20:32:41 +01:00
|
|
|
apply from: rootProject.file('gradle/test/jmh.gradle')
|
|
|
|
|
2021-07-14 11:18:11 +02:00
|
|
|
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')
|
2022-06-01 10:09:09 +02:00
|
|
|
implementation libs.gson
|
|
|
|
implementation libs.jackson.databind
|
|
|
|
implementation libs.orgjson
|
2021-07-14 11:18:11 +02:00
|
|
|
}
|