Première poste

This commit is contained in:
2025-10-04 17:51:11 -07:00
parent 31ec7fceff
commit 2a2b6a12f6

31
build.gradle Normal file
View File

@@ -0,0 +1,31 @@
plugins {
id 'java'
}
group 'epub.jgourour' // Replace with your group ID
version '1.0-SNAPSHOT' // Replace with your version
repositories {
mavenCentral()
}
dependencies {
implementation 'info.picocli:picocli:4.7.6'
implementation 'net.java.dev.jna:jna-platform:5.17.0'
}
test {
useJUnitPlatform()
}
sourceSets {
libraries {
compileClasspath += sourceSets.main.output + sourceSets.test.output // Add dependencies from main and test source sets
runtimeClasspath += sourceSets.main.output + sourceSets.test.output // Add dependencies from main and test source sets
java {
srcDirs = ['src/main/java'] // Define the source directories for Java files\,
include("*")
}
}
}