lots of exercises in java... from https://github.com/exercism/java

build.gradle 256B

12345678910111213141516171819
  1. apply plugin: "java"
  2. apply plugin: "eclipse"
  3. apply plugin: "idea"
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. testCompile "junit:junit:4.12"
  9. }
  10. test {
  11. testLogging {
  12. exceptionFormat = 'full'
  13. events = ["passed", "failed", "skipped"]
  14. }
  15. }