mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-11-04 12:00:01 +08:00 
			
		
		
		
	Bumps the gradle group with 1 update in the /sources/test/init-scripts directory: [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary). Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-smile` from 2.19.2 to 2.20.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.19.2...jackson-dataformats-binary-2.20.0) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-smile dependency-version: 2.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			678 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			678 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
plugins {
 | 
						|
    id 'groovy'
 | 
						|
}
 | 
						|
 | 
						|
java {
 | 
						|
    toolchain {
 | 
						|
        languageVersion = JavaLanguageVersion.of(8)
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
repositories {
 | 
						|
    mavenCentral()
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    testImplementation gradleTestKit()
 | 
						|
    testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
 | 
						|
    testImplementation('org.spockframework:spock-junit4:2.3-groovy-4.0')
 | 
						|
 | 
						|
    testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
 | 
						|
        exclude group: 'org.codehaus.groovy', module: 'groovy-all'
 | 
						|
    }
 | 
						|
    testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.20.0'
 | 
						|
 | 
						|
    testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
 | 
						|
}
 | 
						|
 | 
						|
test {
 | 
						|
    useJUnitPlatform()
 | 
						|
}
 |