mirror of
https://github.com/gradle/actions.git
synced 2025-04-17 00:09:18 +08:00
Bumps the gradle group with 1 update in the /.github/workflow-samples/groovy-dsl directory: com.gradle.common-custom-user-data-gradle-plugin. Bumps the gradle group with 1 update in the /.github/workflow-samples/kotlin-dsl directory: com.gradle.common-custom-user-data-gradle-plugin. Bumps the gradle group with 2 updates in the /sources/test/init-scripts directory: com.gradle.common-custom-user-data-gradle-plugin and [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary). Updates `com.gradle.common-custom-user-data-gradle-plugin` from 2.1 to 2.2.1 Updates `com.gradle.common-custom-user-data-gradle-plugin` from 2.1 to 2.2.1 Updates `com.gradle.common-custom-user-data-gradle-plugin` from 2.1 to 2.2.1 Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-smile` from 2.18.2 to 2.18.3 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.18.2...jackson-dataformats-binary-2.18.3) --- updated-dependencies: - dependency-name: com.gradle.common-custom-user-data-gradle-plugin dependency-version: 2.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.gradle.common-custom-user-data-gradle-plugin dependency-version: 2.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.gradle.common-custom-user-data-gradle-plugin dependency-version: 2.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-smile dependency-version: 2.18.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle ... 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.18.3'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|