-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
32 lines (29 loc) · 928 Bytes
/
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenLocal()
mavenCentral()
maven { url "https://repo.spring.io/release/" }
maven { url "https://maven.springframework.org/release/" }
}
}
rootProject.name = "awslambda-java-examples"
include "micronaut-function-helloworld"
include "micronaut-function-http"
include "micronaut-function-dynamodb"
include "micronaut-application-helloworld"
include "micronaut-application-http"
include "micronaut-application-dynamodb"
include "quarkus-helloworld"
include "quarkus-http"
include "quarkus-dynamodb"
include "simplelambda-helloworld"
include "simplelambda-http"
include "simplelambda-dynamodb"
include "simplelambda-auroradb"
include "simplelambda-micronaut-helloworld"
include "simplelambda-micronaut-http"
include "simplelambda-micronaut-dynamodb"
include "spring-helloworld"
include "spring-http"
include "spring-dynamodb"