contract-testing-demo

pact and java contract testing with micro-commits

git clone https://9o.is/git/contract-testing-demo.git

build.gradle

(264B)


      1 subprojects {
      2     apply plugin: "java"
      3 
      4     group 'com.jcabrra'
      5     version '1.0-SNAPSHOT'
      6     sourceCompatibility = 1.8
      7 
      8     repositories {
      9         mavenCentral()
     10     }
     11 
     12     dependencies {
     13         testCompile group: 'junit', name: 'junit', version: '4.+'
     14     }
     15 }