25 lines
396 B
Groovy
25 lines
396 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'np.com.krrish'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
sourceSets.main.java.srcDirs = ['src']
|
|
sourceSets.test.java.srcDirs = ['test']
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
|
|
}
|