-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.gradle
42 lines (33 loc) · 1.15 KB
/
settings.gradle
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
36
37
38
39
40
41
42
plugins {
id 'eu.xenit.enterprise-conventions.oss' version '0.5.1'
id 'org.ajoberstar.reckon.settings' version '0.19.1'
}
rootProject.name = 'thunx'
reckon {
defaultInferredScope = 'patch'
snapshots()
scopeCalc = calcScopeFromCommitMessages()
stageCalc = { inventory, targetNormal -> java.util.Optional.empty() }
}
include 'thunx-dependencies'
include 'thunx-model'
include 'thunx-pdp'
include 'thunx-pdp-opa'
include 'thunx-spring-api'
include 'thunx-spring-gateway'
include 'thunx-spring-security'
include 'spring-data-querydsl-predicate-injector'
include 'thunx-autoconfigure'
include 'thunx-api-spring-boot-starter'
include 'thunx-gateway-spring-boot-starter'
include 'thunx-visitor-reducer'
include 'thunx-encoding-json'
include 'thunx-predicates-querydsl'
include 'thunx-bom'
include 'thunx-integration-tests:api-integration-tests'
//includeBuild('../opa-java-client') {
// dependencySubstitution {
// substitute module('com.contentgrid.opa-java-client:opa-async-java-client') with project(':opa-async-java-client')
// substitute module('com.contentgrid.opa-java-client:rego-java') with project(':rego-java')
// }
//}