-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (40 loc) · 1.55 KB
/
build.gradle
File metadata and controls
46 lines (40 loc) · 1.55 KB
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
plugins {
id 'java'
}
group = 'kz.bkudaibergenov.aws'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
ext {
awsCdkVersion = '2.160.0'
constructsVersion = '10.1.42'
snakeyamlVersion = '2.0'
}
dependencies {
implementation "software.amazon.awscdk:aws-cdk-lib:${awsCdkVersion}"
implementation "software.constructs:constructs:${constructsVersion}"
implementation "org.yaml:snakeyaml:${snakeyamlVersion}"
implementation project(':lambdas-sidecar')
implementation project(':lambdas:lambda-plain-text')
implementation project(':lambdas:lambda-plain-text-created')
implementation project(':lambdas:lambda-greet-user-by-name-and-age')
implementation project(':lambdas:lambda-json-example')
implementation project(':lambdas:lambda-response-with-headers-status')
implementation project(':lambdas:lambda-redirect-url')
implementation project(':lambdas:lambda-greet-user-query')
implementation project(':lambdas:lambda-greet-user-request-body')
implementation project(':lambdas:lambda-download-file')
implementation project(':lambdas:lambda-handle-request-headers')
implementation project(':lambdas:lambda-process-json-array-response')
implementation project(':lambdas:lambda-process-json-array')
implementation project(':lambdas:lambda-postgresql')
}
tasks.register('run', JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = 'kz.bkudaibergenov.aws.Application'
}