add deps for GraphCLI
This commit is contained in:
parent
599a631c65
commit
326851391c
2 changed files with 32 additions and 1 deletions
|
|
@ -8,6 +8,7 @@
|
|||
plugins {
|
||||
// Apply the application plugin to add support for building a CLI application in Java.
|
||||
application
|
||||
id("com.gradleup.shadow") version "9.0.0-beta12"
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
@ -23,6 +24,8 @@ dependencies {
|
|||
|
||||
// This dependency is used by the application.
|
||||
implementation(libs.guava)
|
||||
|
||||
implementation("org.jline:jline:3.29.0")
|
||||
}
|
||||
|
||||
// Apply a specific Java toolchain to ease working on different environments.
|
||||
|
|
@ -30,7 +33,7 @@ java { toolchain { languageVersion = JavaLanguageVersion.of(21) } }
|
|||
|
||||
application {
|
||||
// Define the main class for the application.
|
||||
mainClass = "fun.youthlic.Graph"
|
||||
mainClass = "fun.youthlic.GraphCLI"
|
||||
}
|
||||
|
||||
tasks.named<Test>("test") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue