File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments