plugins {
    id 'java'
}

group 'com.nisum.junit'
version '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
    testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.1'

    testImplementation 'org.mockito:mockito-core:4.3.1'
    testImplementation 'org.mockito:mockito-junit-jupiter:4.3.1'
}

test {
    useJUnitPlatform()
}
//
//test {
//    useJUnitPlatform {
//        includeTags("Regression")
//    }
//}
//
//test {
//    useJUnitPlatform {
//        includeTags("Shakedown")
//    }
//}
//
//test {
//    useJUnitPlatform {
//        includeTags("Shakedown")
//        excludeTags("Regression")
//    }
//}