| 1234567891011121314151617181920212223242526272829303132 | apply plugin: 'java'apply plugin: 'eclipse'apply plugin: 'application'// compiler optionssourceCompatibility = JavaVersion.VERSION_11targetCompatibility = JavaVersion.VERSION_11mainClassName = 'app.BenchmarkMain'repositories {    mavenCentral()}dependencies {    // Framework    def framework_version = '1.0.0'    implementation "net.javapla.jawn:jawn:${framework_version}"    implementation "net.javapla.jawn:jawn-database-hikari:${framework_version}"        // Database    compile 'org.postgresql:postgresql:42.2.8'}/* ****************** *//*    Application     *//* ****************** */application {    applicationDefaultJvmArgs = ['-server', '-XX:+UseParallelGC','-XX:+UseNUMA', '-XX:+UseStringDeduplication','-Xms4g', '-Xmx4g']}
 |