-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e5651d
commit a0d9ef1
Showing
217 changed files
with
1,007 additions
and
663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ build | |
.idea/ | ||
volume/ | ||
.DS_Store | ||
data/ | ||
data/ | ||
kotlin-js-store/ | ||
local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
dependencies { | ||
api(libs.amqp) | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(libs.amqp) | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
dependencies { | ||
api(libs.reactor.kafka) | ||
api(libs.coroutines.reactive) | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(libs.reactor.kafka) | ||
api(libs.coroutines.reactive) | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
subprojects { | ||
dependencies { | ||
api(rootProject.modules.http) | ||
kotlin { | ||
jvm { | ||
configurations.all { | ||
exclude("software.amazon.awssdk", "netty-nio-client") | ||
} | ||
} | ||
|
||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
val modules = modules { project(it) } | ||
|
||
api(rootProject.libs.aws.http.client.spi) | ||
api(rootProject.libs.coroutines.reactive) | ||
api(modules.http) | ||
api(rootProject.libs.aws.http.client.spi) | ||
api(rootProject.libs.coroutines.reactive) | ||
|
||
if (project.name != "connector-aws-java-11-http-spi") { | ||
api(rootProject.modules.awsHttp11Spi) | ||
if (project.name != "connector-aws-java-11-http-spi") { | ||
api(modules.awsHttp11Spi) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
dependencies { | ||
//dependencies { | ||
// implementation(libs.aws.dynamodb) | ||
} | ||
//} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
|
||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
dependencies { | ||
api(libs.aws.lambda) { | ||
exclude("software.amazon.awssdk", "netty-nio-client") | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(rootProject.libs.aws.lambda) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
dependencies { | ||
api(libs.aws.s3) { | ||
exclude("software.amazon.awssdk", "netty-nio-client") | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(rootProject.libs.aws.s3) | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
dependencies { | ||
api(libs.aws.ses) { | ||
exclude("software.amazon.awssdk", "netty-nio-client") | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(rootProject.libs.aws.ses) | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
dependencies { | ||
api(libs.aws.sns) { | ||
exclude("software.amazon.awssdk", "netty-nio-client") | ||
kotlin { | ||
sourceSets { | ||
val jvmMain by getting { | ||
dependencies { | ||
api(rootProject.libs.aws.sns) | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.