You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
396 B
25 lines
396 B
5 years ago
|
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'
|
||
|
}
|