mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-29 09:00:04 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 21a3ebb55f
			
		
	
	
		21a3ebb55f
		
	
	
	
	
		
			
			Bumps [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary) from 2.15.3 to 2.16.0. - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.15.3...jackson-dataformats-binary-2.16.0) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-smile dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			612 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			612 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id 'groovy'
 | |
| }
 | |
| 
 | |
| java {
 | |
|     toolchain {
 | |
|         languageVersion = JavaLanguageVersion.of(8)
 | |
|     }
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     testImplementation gradleTestKit()
 | |
|     testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
 | |
|     testImplementation('org.spockframework:spock-junit4:2.3-groovy-3.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.16.0'
 | |
| }
 | |
| 
 | |
| test {
 | |
|     useJUnitPlatform()
 | |
| }
 |