chore: add basic Siren resource
[demos/example-siren] / provider / build.gradle
index 6e73ef7..d9c520f 100644 (file)
@@ -2,6 +2,7 @@ plugins {
        id 'org.springframework.boot' version '2.3.4.RELEASE'
        id 'io.spring.dependency-management' version '1.0.10.RELEASE'
        id 'java'
+       id "io.freefair.lombok" version "5.2.1"
 }
 
 group = 'io.pactflow.example'
@@ -13,7 +14,10 @@ repositories {
 }
 
 dependencies {
-       implementation 'org.springframework.boot:spring-boot-starter'
+       implementation 'org.springframework.boot:spring-boot-starter-hateoas'
+       implementation 'com.jayway.jsonpath:json-path'
+       implementation 'de.ingogriebsch.hateoas:spring-hateoas-siren:1.0.0-M2'
+
        testImplementation('org.springframework.boot:spring-boot-starter-test') {
                exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
        }