-
Notifications
You must be signed in to change notification settings - Fork 96
/
settings.gradle
52 lines (44 loc) · 1.04 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
43
44
45
46
47
48
49
50
51
52
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
plugins {
id 'com.microsoft.azure.azurefunctions' version '1.16.1'
}
}
buildscript {
dependencies {
classpath 'org.antlr:antlr4-runtime:4.8-1!!'
classpath 'org.tomlj:tomlj:1.0.0!!'
}
}
plugins {
id 'io.micronaut.build.shared.settings' version '7.2.3'
}
rootProject.name = 'micronaut-starter'
include 'starter-core'
include 'starter-cli'
include 'starter-aws-cdk'
include 'starter-api'
include 'starter-web-netty'
include 'starter-web-servlet'
include 'starter-azure-function'
include 'starter-gcp-function'
include 'starter-aws-lambda'
include 'test-aws'
include 'test-buildtool'
include 'test-core'
include 'test-cloud'
include 'test-features'
include 'test-utils'
include 'test-cli'
include 'test-suite-graal'
project(':starter-cli').name = "micronaut-cli"
dependencyResolutionManagement {
versionCatalogs {
templateLibs {
from(files("gradle/templates.versions.toml"))
}
}
}