Add initial project structure with instrument classes and Gradle setup

This commit is contained in:
ItsTheSky
2025-11-03 09:33:06 +01:00
commit b5d697a18d
20 changed files with 945 additions and 0 deletions

20
build.gradle Normal file
View File

@ -0,0 +1,20 @@
plugins {
id 'java'
}
group = 'net.itsthesky.projetbut2'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}