-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
25 lines (20 loc) · 942 Bytes
/
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
apply plugin: 'java-library'
dependencies {
implementation 'org.eclipse.collections:eclipse-collections-api:11.1.0'
implementation 'org.eclipse.collections:eclipse-collections:11.1.0'
//implementation 'com.koloboke:koloboke-api-jdk8:1.0.0'
//runtime 'com.koloboke:koloboke-impl-jdk8:1.0.0'
implementation 'io.github.java-diff-utils:java-diff-utils:4.12'
implementation 'com.opencsv:opencsv:5.9'
implementation 'com.google.guava:guava:32.1.3-jre'
api 'com.google.inject:guice:7.0.0'
api 'com.google.inject.extensions:guice-multibindings:4.2.3'
api project(':ecco-base')
implementation 'org.projectlombok:lombok:1.18.30'
testImplementation project(':ecco-adapter-file')
testImplementation project(':ecco-adapter-text')
testRuntimeOnly project(':ecco-adapter-image')
testImplementation project(':ecco-adapter-challenge')
testImplementation project(':ecco-adapter-cpp')
testImplementation project(':ecco-adapter-runtime')
}