-
-
Notifications
You must be signed in to change notification settings - Fork 486
Expand file tree
/
Copy pathsettings.gradle
More file actions
35 lines (29 loc) · 822 Bytes
/
settings.gradle
File metadata and controls
35 lines (29 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
rootProject.name = 'au.com.dius.pact'
include 'core:support'
include 'core:pactbroker'
include 'core:model'
include 'core:matchers'
include 'consumer'
include 'consumer:groovy'
include 'consumer:junit'
include 'consumer:junit5'
include 'consumer:kotlin'
include 'provider'
include 'provider:gradle'
include 'provider:maven'
include 'provider:junit'
include 'provider:junit5'
include 'provider:spring'
include 'provider:junit5spring'
// Spring 6 module requires JDK 17+
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
include 'provider:spring6'
}
// In Windows, fails with java.lang.NullPointerException
if (System.getenv('GITHUB_WORKFLOW') == null) {
include 'provider:lein'
}
include 'pact-jvm-server'
include 'pact-specification-test'
include 'pact-publish'
include 'compatibility-suite'