-
Notifications
You must be signed in to change notification settings - Fork 44
/
build.gradle
executable file
·48 lines (43 loc) · 2.04 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
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java library project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/7.5/userguide/building_java_projects.html
*/
plugins {
// Apply the java-library plugin for API and implementation separation.
id 'java'
id 'idea'
}
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
// Use JUnit test framework.
testImplementation 'junit:junit:4.13.2'
implementation "com.fasterxml.jackson.core:jackson-core:2.13.4"
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.4"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.13.4"
implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.13.4"
// https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jdk8
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: '2.13.4'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-parameter-names
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: '2.13.4'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8.2'
implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
implementation 'io.grpc:grpc-netty:1.50.2'
implementation 'io.grpc:grpc-protobuf:1.50.2'
implementation 'io.grpc:grpc-stub:1.50.2'
implementation group: 'org.rocksdb', name: 'rocksdbjni', version: '6.4.6'
}
compileJava {
//For jackson to use property based constructor
options.compilerArgs << '-parameters'
}
test {
jvmArgs '--illegal-access=permit'
}