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

build.gradle 274B

1234567891011121314151617
  1. apply plugin: "java"
  2. apply plugin: "eclipse"
  3. apply plugin: "idea"
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. testCompile "junit:junit:4.10"
  9. }
  10. // ignore; used by track maintainers.
  11. sourceSets { example { } }
  12. dependencies { testCompile sourceSets.example.output }