22 lines
No EOL
428 B
Groovy
22 lines
No EOL
428 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.lluni'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.ejml:ejml-all:0.41'
|
|
implementation 'org.knowm.xchart:xchart:3.8.1'
|
|
implementation 'com.opencsv:opencsv:5.6'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |