Initial Commit

This commit is contained in:
TheTrouper
2023-11-02 10:42:54 -05:00
parent 1de149fb46
commit 810c91ed04
15 changed files with 533 additions and 0 deletions

26
build.gradle Normal file
View File

@@ -0,0 +1,26 @@
plugins {
id 'java'
}
group 'me.trouper'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'net.objecthunter:exp4j:0.4.8'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'me.trouper.Main'
}
}