Priority with Spring cloud contract -
sc contract version : 1.1.0.build-snapshot i defining priority in groovy contracts : package contracts import org.springframework.cloud.contract.spec.contract [ contract.make { priority 1 request { name 'create' method 'post' url '/api/patates' body([ cuite: true ]) headers { contenttype(applicationjson()) } } response { status 201 body([ id: $(consumer('1'), producer(regex('[0-9]{0,9}'))), cuite: true ]) headers { contenttype(applicationjson()) } } }, contract.make { priority 2 request { name 'read' method 'get' url '/api/patates/1' headers { contenttype(applicationjson()) } } response { status 200 body([ id: 1, cuite: true