chore: add basic Siren resource
[demos/example-siren] / provider / build.gradle
1 plugins {
2         id 'org.springframework.boot' version '2.3.4.RELEASE'
3         id 'io.spring.dependency-management' version '1.0.10.RELEASE'
4         id 'java'
5         id "io.freefair.lombok" version "5.2.1"
6 }
7
8 group = 'io.pactflow.example'
9 version = '0.0.1-SNAPSHOT'
10 sourceCompatibility = '11'
11
12 repositories {
13         mavenCentral()
14 }
15
16 dependencies {
17         implementation 'org.springframework.boot:spring-boot-starter-hateoas'
18         implementation 'com.jayway.jsonpath:json-path'
19         implementation 'de.ingogriebsch.hateoas:spring-hateoas-siren:1.0.0-M2'
20
21         testImplementation('org.springframework.boot:spring-boot-starter-test') {
22                 exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
23         }
24 }
25
26 test {
27         useJUnitPlatform()
28 }