-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (42 loc) · 1.22 KB
/
build.gradle
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
43
44
45
46
47
48
49
50
51
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
}
}
jar {
baseName = 'deployable'
}
sourceSets {
main {
java {
srcDir 'src'
}
}
}
repositories {
mavenCentral()
maven {
url "http://nxs.morph.ai:8081/repository/maven-releases/"
}
}
jar {
into('lib') {
from configurations.compile
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'com.altin:custom-code:1.0.5'
compile("com.amazonaws:aws-lambda-java-core:1.1.0")
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
// https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.0.1'
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.14'
// https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-json-jackson
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.19'
compile 'org.glassfish.jersey.core:jersey-client:2.23.1'
//<=custom_dependencies=>
}