Newer
Older
quant / build.gradle
@malexple malexple on 16 Oct 342 bytes Add quant
plugins {
    id 'java'
}

group = 'ru.mcs.q'
version = '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    testImplementation platform('org.junit:junit-bom:5.10.0')
    testImplementation 'org.junit.jupiter:junit-jupiter'
    testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

test {
    useJUnitPlatform()
}