1234567891011121314151617181920 |
- plugins {
- id 'java'
- }
-
- group 'org.example'
- version '1.0-SNAPSHOT'
-
- repositories {
- mavenCentral()
- }
-
- dependencies {
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
- implementation 'io.undertow:undertow-core:2.1.0.Final'
- }
-
- test {
- useJUnitPlatform()
- }
|