-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (26 loc) · 1.1 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
group 'ru.cs.eatright'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.telegram', name: 'telegrambots', version: '3.5'
compile group: 'org.springframework', name: 'spring-context', version: '4.3.9.RELEASE'
compile group: 'com.google.guava', name: 'guava', version: '22.0'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'ch.qos.logback:logback-core:1.2.3'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile group: 'edu.stanford.nlp', name: 'stanford-corenlp', version: '3.5.2'
compile group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: '6.3.0'
//compile group: 'org.apache.lucene.morphology', name: 'russian', version: '1.2'
compile group: 'org.apache.commons', name: 'commons-exec', version: '1.3'
compile group: 'com.google.code.gson', name: 'gson', version: '2.6.2'
}
task execute(type:JavaExec) {
main = 'Main'
classpath = sourceSets.main.runtimeClasspath
}