-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (29 loc) · 927 Bytes
/
build.gradle
File metadata and controls
35 lines (29 loc) · 927 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
32
33
34
35
plugins {
id 'java'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
group = 'org.globolist'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools
implementation 'org.apache.opennlp:opennlp-tools:2.2.0'
implementation 'edu.stanford.nlp:stanford-corenlp:4.5.4'
implementation 'edu.stanford.nlp:stanford-corenlp:4.5.4:models-english'
// https://mvnrepository.com/artifact/org.apache.spark/spark-core
implementation 'org.apache.spark:spark-sql_2.13:3.4.0'
implementation 'org.apache.spark:spark-streaming_2.13:3.4.0'
implementation 'org.netpreserve:jwarc:0.22.0'
implementation 'org.jsoup:jsoup:1.16.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}