1
0
Fork 0
mirror of https://github.com/gradle/gradle-build-action.git synced 2025-04-10 07:14:13 +02:00
gradle-build-action/__tests__/samples/java-toolchain/build.gradle
dependabot[bot] 104893cc57
Bump junit from 4.12 to 4.13.2 in /__tests__/samples/java-toolchain
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.2.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md)
- [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.2)

---
updated-dependencies:
- dependency-name: junit:junit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-02 17:36:05 +00:00

17 lines
No EOL
210 B
Groovy

plugins {
id 'java'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(16)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation('junit:junit:4.13.2')
}