chore: bootstrap springboot project
[demos/example-siren] / provider / build.gradle
diff --git a/provider/build.gradle b/provider/build.gradle
new file mode 100644 (file)
index 0000000..f617265
--- /dev/null
@@ -0,0 +1,24 @@
+plugins {
+       id 'org.springframework.boot' version '2.3.4.RELEASE'
+       id 'io.spring.dependency-management' version '1.0.10.RELEASE'
+       id 'java'
+}
+
+group = 'io.pactflow.example'
+version = '0.0.1-SNAPSHOT'
+sourceCompatibility = '14'
+
+repositories {
+       mavenCentral()
+}
+
+dependencies {
+       implementation 'org.springframework.boot:spring-boot-starter'
+       testImplementation('org.springframework.boot:spring-boot-starter-test') {
+               exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
+       }
+}
+
+test {
+       useJUnitPlatform()
+}