plugins { id 'org.jetbrains.kotlin.jvm' version '1.9.23' id 'jvm-test-suite' } group = 'org.spchemicals' version = '1.0-SNAPSHOT' allprojects { repositories { mavenLocal() maven { url 'https://maven.aliyun.com/repository/central' } maven { url 'https://maven.aliyun.com/repository/google' } maven { url 'https://maven.aliyun.com/repository/gradle-plugin' } maven { url 'https://maven.aliyun.com/repository/public' } maven { url 'https://maven.aliyun.com/repository/spring' } mavenCentral() } } dependencies { testImplementation 'org.jetbrains.kotlin:kotlin-test:1.9.22' } testing { suites } kotlin { jvmToolchain(21) }