-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (31 loc) · 1.02 KB
/
build.gradle
File metadata and controls
42 lines (31 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id "java-library"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies {
compile "io.inversion:inversion-lambda:${inversionVersion}"
//comment in any of these modules you want to include
//in your own project and add your dependencies below
//
//compile "io.inversion:inversion-dynamodb:${inversionVersion}"
//compile "io.inversion:inversion-elasticsearch:${inversionVersion}"
//compile "io.inversion:inversion-kinesis:${inversionVersion}"
//compile "io.inversion:inversion-redis:${inversionVersion}"
//compile "io.inversion:inversion-s3:${inversionVersion}"
//compile "io.inversion:inversion-script:${inversionVersion}"
testCompile 'junit:junit:4.12'
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from configurations.compileClasspath
}
}
build.dependsOn buildZip