23 lines
No EOL
535 B
Groovy
23 lines
No EOL
535 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'fr.frt'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.projectlombok:lombok:1.18.16'
|
|
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.1'
|
|
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
|
implementation 'io.github.vincenzopalazzo:material-ui-swing:1.1.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |