forked from santhakr/Simple-Java-Client-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (24 loc) · 714 Bytes
/
build.gradle
File metadata and controls
31 lines (24 loc) · 714 Bytes
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
plugins {
id 'java'
}
group 'com.example.hyokeun.asr'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
jar {
manifest {
attributes 'Main-Class': 'com.example.hyokeun.asr.SpeechToTextService'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.apache.commons:commons-lang3:3.6'
compile 'com.google.guava:guava:23.0'
compile 'org.projectlombok:lombok:1.16.18'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.6'
compile 'com.google.code.gson:gson:2.8.1'
compile 'org.webjars:stomp-websocket:2.3.3'
compile 'com.googlecode.json-simple:json-simple:1.1.1'
}