Skip to content

Commit

Permalink
chore: Update gradle file to include dependencies in jar
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfarrell authored Aug 22, 2018
1 parent 4622fcc commit bac75a4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ repositories {
jcenter()
}

jar {
baseName = "dynamodb-utils"
archivesBaseName = "dynamodb-utils"
manifest {
attributes("Implementation-Title": "Collection of dynamodb utility functions", "Implementation-Version": "0.0.2")
}
//(fat jar).
into("lib") {
from configurations.runtime
}
}

dependencyManagement {
imports {
mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.363'
Expand All @@ -42,4 +54,4 @@ dependencies {
"io.mockk:mockk:1.8.4"
)

}
}

0 comments on commit bac75a4

Please sign in to comment.