You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
850 B
Groovy
37 lines
850 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
wrapper {
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'java'
|
|
defaultTasks 'clean', 'compile'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.commons:commons-lang3:3.10'
|
|
implementation 'org.apache.commons:commons-collections4:4.4'
|
|
implementation 'org.apache.commons:commons-math3:3.6.1'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.0'
|
|
}
|
|
|
|
compileJava {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
}
|
|
|