Skip to content

Commit

Permalink
added compileJava to exported ZIP
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr authored Oct 21, 2018
1 parent b39ad42 commit 39cc888
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ First create following file to share configuration between your lambda libraries
.lambda.gradle
----
configurations {
lambda.extendsFrom runtime
testCompile.extendsFrom lambda
lambdaCompile.extendsFrom runtime
testCompile.extendsFrom lambdaCompile
}
dependencies {
lambda "com.agorapulse:micronaut-function-aws-agp:$micronautLibrariesVersion"
lambdaCompile "com.agorapulse:micronaut-function-aws-agp:$micronautLibrariesVersion"
compile "io.micronaut:micronaut-http-server"
compile "io.micronaut:micronaut-router"
Expand All @@ -102,6 +102,7 @@ dependencies {
}
task buildZip(type: Zip) {
from compileJava
from compileGroovy
from processResources
into('lib') {
Expand Down

0 comments on commit 39cc888

Please sign in to comment.