-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (45 loc) · 1.63 KB
/
build.gradle
File metadata and controls
54 lines (45 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
}
}
apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
group = 'sem5-sdk'
version = '6.21.0-dev0'
mainClassName = 'com.lexalytics.semantria.CommandLineInterface'
description = """Semantria Services 6.0 SDK"""
sourceCompatibility = JavaVersion.VERSION_8
targetCompatibility = JavaVersion.VERSION_8
shadowJar {
mergeServiceFiles()
}
jar {
manifest {
attributes 'Main-Class': mainClassName
attributes 'Implementation-Title': description
attributes 'Implementation-Version': version
}
}
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version:'2.15.3'
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version:'2.15.3'
compile group: 'io.github.openfeign', name:'feign-core', version:'12.5.0'
compile group: 'io.github.openfeign', name:'feign-okhttp', version:'12.5.0'
compile group: 'io.github.openfeign', name:'feign-jackson', version:'12.5.0'
compile group: 'io.github.openfeign', name:'feign-slf4j', version:'12.5.0'
compile group: 'org.slf4j', name: 'slf4j-api', version: '2.0.9'
testCompile('junit:junit:4.12')
testCompile('org.mockito:mockito-all:1.10.19')
testCompile('com.github.tomakehurst:wiremock:2.17.0')
testCompile('org.skyscreamer:jsonassert:1.5.0')
}