Skip to content

Commit a7349a9

Browse files
committed
This is for checking purpose
1 parent ec6f29b commit a7349a9

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

build.gradle.kts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// This is a Gradle build configuration file using Kotlin DSL
2+
// It is intended for use within a Java project structure
3+
4+
// Note: The following blocks are standard Gradle configuration
5+
// for a Java application.
6+
7+
plugins {
8+
// Apply the java plugin to add support for Java
9+
id("java")
10+
// Apply the application plugin to make it easy to run the code
11+
id("application")
12+
}
13+
14+
repositories {
15+
// Use Maven Central for resolving dependencies
16+
mavenCentral()
17+
}
18+
19+
dependencies {
20+
// Standard testing library configuration
21+
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
22+
}
23+
24+
// Configuration for Java toolchain
25+
java {
26+
toolchain {
27+
// Matches the JDK 25 version found in your environment
28+
languageVersion.set(JavaLanguageVersion.of(25))
29+
}
30+
}
31+
32+
// Application entry point configuration
33+
application {
34+
// The main class of your DSA project
35+
mainClass.set("Main")
36+
}
37+
38+
tasks.withType<Test> {
39+
useJUnitPlatform()
40+
}

0 commit comments

Comments
 (0)