Princeton1/module8/build.gradle
hitanshu310 bbc040dcd4
All checks were successful
sample gradle build and test / build (pull_request) Successful in 2m16s
sample gradle build and test / build (push) Successful in 55s
Heapsort Implementation
2025-02-16 16:40:56 +05:30

21 lines
383 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')
testImplementation project(':common')
}
test {
useJUnitPlatform()
}