forked from jobrunr/jobrunr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
35 lines (33 loc) · 1.18 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
pluginManagement {
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://repo.spring.io/release' }
maven { url 'https://repo.spring.io/milestone' }
gradlePluginPortal()
}
}
rootProject.name = 'JobRunr'
include ':platform'
include ':core'
include ':language-support:jobrunr-kotlin-17-support'
include ':language-support:jobrunr-kotlin-18-support'
include ':language-support:jobrunr-kotlin-19-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-2-starter'
include ':framework-support:jobrunr-spring-boot-3-starter'
include ':tests:e2e-base'
include ':tests:e2e-vm-jdk'
include ':tests:e2e-elasticsearch'
include ':tests:e2e-mariadb'
include ':tests:e2e-mongo'
include ':tests:e2e-mysql'
include ':tests:e2e-oracle'
include ':tests:e2e-postgres'
include ':tests:e2e-redis'
include ':tests:e2e-sqlserver'
include ':tests:e2e-ui-gson'
include ':tests:e2e-ui-jackson'