1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Projection_Planning/build.gradle

20 lines
334 B
Groovy
Raw Normal View History

2020-12-14 10:50:34 +01:00
plugins {
id 'java'
}
group 'fr.frt'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
2020-12-14 12:05:24 +01:00
implementation 'org.projectlombok:lombok:1.18.16'
2020-12-14 10:50:34 +01:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}