forked from Hithomelabs/Princeton1
Reviewed-on: Hithomelabs/Princeton1#20 Reviewed-by: hitanshu <hitanshu98@gmail.com> Co-authored-by: Kruti Shah <krutis0201@gmail.com> Co-committed-by: Kruti Shah <krutis0201@gmail.com>
22 lines
422 B
Groovy
22 lines
422 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.hithomelabs.princeton1.module8'
|
|
version = 'unspecified'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
implementation project(':module5')
|
|
implementation project(':module4')
|
|
testImplementation project(':common')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |