chore: switch to Java 11
[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 }
6
7 group = 'io.pactflow.example'
8 version = '0.0.1-SNAPSHOT'
9 sourceCompatibility = '11'
10
11 repositories {
12         mavenCentral()
13 }
14
15 dependencies {
16         implementation 'org.springframework.boot:spring-boot-starter'
17         testImplementation('org.springframework.boot:spring-boot-starter-test') {
18                 exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
19         }
20 }
21
22 test {
23         useJUnitPlatform()
24 }