Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,28 @@ apply plugin: 'com.github.sherter.google-java-format'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

dependencies {
// TODO make this provided instead of compile?
implementation 'com.amazonaws:aws-lambda-java-core:1.1.0'
implementation 'com.amazonaws:aws-lambda-java-events:2.2.2' // 2.2.2 is earliest version that has all needed event sources
implementation 'com.amazonaws:aws-java-sdk-s3:1.11.163'
implementation 'com.amazonaws:aws-java-sdk-kinesis:1.11.163'
implementation 'com.amazonaws:aws-java-sdk-dynamodb:1.11.163'
implementation 'com.googlecode.json-simple:json-simple:1.1'
implementation('io.opentracing:opentracing-api:0.31.0') { transitive = false }
implementation('io.opentracing:opentracing-util:0.31.0') { transitive = false }
implementation('io.opentracing:opentracing-noop:0.31.0') { transitive = false }

testImplementation 'junit:junit:4.12'
testImplementation 'io.opentracing:opentracing-mock:0.31.0'
}

jar {
manifest {
attributes 'Implementation-Title': 'AWS Lambda OpenTracing Java SDK', 'Implementation-Version': '1.0.1'
}
}

allprojects {
repositories {
mavenCentral()
Expand Down
32 changes: 0 additions & 32 deletions java-aws-lambda/build.gradle

This file was deleted.