tdd-java-demo

tdd java demo with micro-commits

git clone https://9o.is/git/tdd-java-demo.git

build.gradle

(384B)


      1 plugins {
      2     id 'java'
      3 }
      4 
      5 group 'org.example'
      6 version '1.0-SNAPSHOT'
      7 
      8 repositories {
      9     mavenCentral()
     10 }
     11 
     12 dependencies {
     13     compile 'com.google.guava:guava:30.1.1-jre'
     14     testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
     15     testImplementation 'org.hamcrest:hamcrest:2.2'
     16     testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
     17 }
     18 
     19 test {
     20     useJUnitPlatform()
     21 }