123456789101112131415161718192021222324252627282930313233 |
- // Set properties before any plugins get loaded
- ext {
- minJavaVersionForTests = JavaVersion.VERSION_1_8
- }
- apply from: "$rootDir/gradle/instrumentation.gradle"
- apply plugin: 'org.unbroken-dome.test-sets'
- muzzle {
- pass {
- group = "io.ratpack"
- module = 'ratpack-core'
- versions = "[1.4.0,)"
- skipVersions += ["0.9.12", "0.9.13", "0.9.14",]
- }
- }
- testSets {
- latestDepTest {
- dirName = 'test'
- }
- }
- dependencies {
- compileOnly group: 'io.ratpack', name: 'ratpack-core', version: '1.4.0'
- testImplementation project(':instrumentation:netty:netty-4.1')
- testImplementation group: 'io.ratpack', name: 'ratpack-groovy-test', version: '1.4.0'
- latestDepTestImplementation group: 'io.ratpack', name: 'ratpack-groovy-test', version: '+'
- if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
- testImplementation group: 'com.sun.activation', name: 'jakarta.activation', version: '1.2.2'
- }
- }
|