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
26plugins {
id 'java'
}
compileJava.options.encoding = 'UTF-8'
group 'com.mairuis.sharp'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation group: 'com.netflix.hystrix', name: 'hystrix-core', version: '1.5.18'
implementation group: 'com.lmax', name: 'disruptor', version: '3.4.4'
implementation group: 'org.jctools', name: 'jctools-core', version: '3.3.0'
implementation 'io.netty:netty-all:4.1.65.Final'
}
test {
useJUnitPlatform()
}