22 lines
376 B
Groovy
22 lines
376 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'ru.lionarius'
|
|
version = '1-LAB'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
implementation 'com.google.guava:guava:33.2.1-jre'
|
|
implementation 'com.lmax:disruptor:4.0.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |