Skip to content

Commit dc91858

Browse files
authored
Merge pull request #3 from newrelic/jwatson/destructure_modules
Simplify the project to a single module
2 parents 099681e + 4c44c62 commit dc91858

11 files changed

+22
-32
lines changed

build.gradle

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,28 @@ apply plugin: 'com.github.sherter.google-java-format'
2020
sourceCompatibility = JavaVersion.VERSION_1_8
2121
targetCompatibility = JavaVersion.VERSION_1_8
2222

23+
dependencies {
24+
// TODO make this provided instead of compile?
25+
implementation 'com.amazonaws:aws-lambda-java-core:1.1.0'
26+
implementation 'com.amazonaws:aws-lambda-java-events:2.2.2' // 2.2.2 is earliest version that has all needed event sources
27+
implementation 'com.amazonaws:aws-java-sdk-s3:1.11.163'
28+
implementation 'com.amazonaws:aws-java-sdk-kinesis:1.11.163'
29+
implementation 'com.amazonaws:aws-java-sdk-dynamodb:1.11.163'
30+
implementation 'com.googlecode.json-simple:json-simple:1.1'
31+
implementation('io.opentracing:opentracing-api:0.31.0') { transitive = false }
32+
implementation('io.opentracing:opentracing-util:0.31.0') { transitive = false }
33+
implementation('io.opentracing:opentracing-noop:0.31.0') { transitive = false }
34+
35+
testImplementation 'junit:junit:4.12'
36+
testImplementation 'io.opentracing:opentracing-mock:0.31.0'
37+
}
38+
39+
jar {
40+
manifest {
41+
attributes 'Implementation-Title': 'AWS Lambda OpenTracing Java SDK', 'Implementation-Version': '1.0.1'
42+
}
43+
}
44+
2345
allprojects {
2446
repositories {
2547
mavenCentral()

java-aws-lambda/build.gradle

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)