Implement the padlock

This commit is contained in:
Rui Hu
2024-03-12 15:18:46 +08:00
parent 4953d93d5e
commit 6c798c04bd
15 changed files with 700 additions and 0 deletions

26
build.gradle.kts Normal file
View File

@@ -0,0 +1,26 @@
plugins {
id("java")
}
group = "com.cleverthis.interview"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation(project(":padlock-impl"))
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.test {
useJUnitPlatform()
}