-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
45 lines (42 loc) · 1.38 KB
/
settings.gradle.kts
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
pluginManagement {
plugins {
id("com.johnturkson.graalvm") version "1.0.0-SNAPSHOT" apply false
id("com.johnturkson.kotlin.jvm") version "1.0.0-SNAPSHOT" apply false
id("com.johnturkson.publishing") version "1.0.0-SNAPSHOT" apply false
}
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/JohnTurkson/packages")
credentials {
val githubUsername: String? by settings
val githubToken: String? by settings
username = githubUsername ?: System.getenv("GITHUB_USERNAME")
password = githubToken ?: System.getenv("GITHUB_TOKEN")
}
}
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/JohnTurkson/packages")
credentials {
val githubUsername: String? by settings
val githubToken: String? by settings
username = githubUsername ?: System.getenv("GITHUB_USERNAME")
password = githubToken ?: System.getenv("GITHUB_TOKEN")
}
}
}
}
rootProject.name = "aws-lambda-runtime"
include(":annotations")
include(":bootstrap")
include(":cdk")
include(":client")
include(":events")