All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.acceptance-test.build.gradle.mustache Maven / Gradle / Ivy

Go to download

Gradle plugin to create a clean application in Java that already works, It follows our best practices!

There is a newer version: 3.20.10
Show newest version
plugins {
    id 'java'
}

ext {
    karateVersion = "1.0.1"
    cucumberReportVersion = "5.5.3"
    swaggerRequestValidatorVersion = "2.27.1"
    commonsCodecVersion = "1.15"
    rhinoVersion = "1.7.14"
    fasterxmlJacksonCoreVersion = "2.13.2.2"
}

repositories {
    mavenCentral()
}

dependencies {
    testImplementation "com.intuit.karate:karate-junit5:${karateVersion}"
    testImplementation "net.masterthought:cucumber-reporting:${cucumberReportVersion}"
    testImplementation "com.atlassian.oai:swagger-request-validator-core:${swaggerRequestValidatorVersion}"
    testImplementation "commons-codec:commons-codec:${commonsCodecVersion}"
    testImplementation "org.mozilla:rhino:${rhinoVersion}"
    testImplementation "com.fasterxml.jackson.core:jackson-databind:${fasterxmlJacksonCoreVersion}"
}

test {
    useJUnitPlatform()
    systemProperty "karate.options", System.properties.getProperty("karate.options")
    systemProperty "karate.env", System.properties.getProperty("karate.env")
    outputs.upToDateWhen { false }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy