plugins { id 'java' id 'io.qameta.allure' version '2.8.1' } group = 'com.antpay' version = '1.0.0-SNAPSHOT' //sourceCompatibility = '15' def coreNGVersion="7.6.3" def allureVersion = "2.13.6" def testngVersion = "6.14.3" def okhttp3Version = "4.5.0" def fastjsonVersion = "1.2.73" def slf4jVersion = "1.7.30" def extentreportsVersion = "3.0.3" def assertjVersion = '3.16.1' compileJava.options.encoding = "UTF-8" compileTestJava.options.encoding = "UTF-8" configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenLocal() mavenCentral() maven { url = 'http://maven.aliyun.com/nexus/content/groups/public/' } } dependencies { implementation "com.squareup.okhttp3:okhttp:${okhttp3Version}" implementation "c