12345678910111213141516171819 |
- plugins {
- id 'java'
- }
- group = 'com.its'
- version = '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- dependencies {
- testImplementation platform('org.junit:junit-bom:5.10.0')
- testImplementation 'org.junit.jupiter:junit-jupiter'
- }
- test {
- useJUnitPlatform()
- }
|