Skip to content

Instantly share code, notes, and snippets.

@rtacconi
Created April 5, 2016 10:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtacconi/2df474e32d90df77ec2f6b9735a6672d to your computer and use it in GitHub Desktop.
Save rtacconi/2df474e32d90df77ec2f6b9735a6672d to your computer and use it in GitHub Desktop.
gradle aws lambda jruby build
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
buildscript {
repositories { jcenter() }
dependencies {
/* check jruby-gradle.org for the latest release */
classpath "com.github.jruby-gradle:jruby-gradle-jar-plugin:1.0.1"
}
}
apply plugin: 'com.github.jruby-gradle.jar'
jrubyJar {
initScript library()
}
dependencies {
gems 'rubygems:aws-sdk:2.2.31'
gems 'rubygems:aws-sdk-core:2.2.31'
gems 'rubygems:aws-sdk-resources:2.2.31'
}
repositories {
mavenCentral()
}
dependencies {
compile (
'com.amazonaws:aws-lambda-java-core:1.0.0',
'com.amazonaws:aws-lambda-java-events:1.0.0',
'com.google.code.gson:gson:2.3.1',
)
compile files('lib/jruby.jar')
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from configurations.runtime
}
}
build.dependsOn buildZip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment