JavaNN/build.gradle

22 lines
428 B
Groovy
Raw Normal View History

2022-05-21 23:15:51 +02:00
plugins {
id 'java'
}
group 'de.lluni'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.ejml:ejml-all:0.41'
2022-05-25 15:34:28 +02:00
implementation 'org.knowm.xchart:xchart:3.8.1'
implementation 'com.opencsv:opencsv:5.6'
2022-05-21 23:15:51 +02:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}