forked from jobrunr/jobrunr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
40 lines (39 loc) · 1.42 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
pluginManagement {
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://repo.spring.io/release' }
}
}
rootProject.name = 'JobRunr'
include ':platform'
include ':core'
include ':language-support:jobrunr-kotlin-15-support'
include ':language-support:jobrunr-kotlin-16-support'
include ':language-support:jobrunr-kotlin-17-support'
include ':framework-support:jobrunr-micronaut-feature'
include ':framework-support:jobrunr-quarkus-extension:deployment'
include ':framework-support:jobrunr-quarkus-extension:runtime'
include ':framework-support:jobrunr-quarkus-extension:tests'
include ':framework-support:jobrunr-spring-boot-starter'
include ':framework-support:jobrunr-spring-boot-native'
include ':tests:e2e-base'
include ':tests:e2e-vm-jdk'
include ':tests:e2e-elasticsearch-gson'
include ':tests:e2e-elasticsearch-jackson'
include ':tests:e2e-mariadb-gson'
include ':tests:e2e-mariadb-jackson'
include ':tests:e2e-mongo-gson'
include ':tests:e2e-mongo-jackson'
include ':tests:e2e-mysql-gson'
include ':tests:e2e-mysql-jackson'
include ':tests:e2e-oracle-gson'
include ':tests:e2e-oracle-jackson'
include ':tests:e2e-postgres-gson'
include ':tests:e2e-postgres-jackson'
include ':tests:e2e-redis-gson'
include ':tests:e2e-redis-jackson'
include ':tests:e2e-sqlserver-gson'
include ':tests:e2e-sqlserver-jackson'
include ':tests:e2e-ui-gson'
include ':tests:e2e-ui-jackson'