Initial commit: Add base project structure for multithreading and hashing workshop

This commit is contained in:
2026-05-23 06:33:08 +03:30
parent e6a3c94d2a
commit 54175bc3f7
3 changed files with 29 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
plugins {
id 'java'
}
group = 'dev'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// testImplementation platform('org.junit:junit-bom:5.10.0')
// testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
+2
View File
@@ -0,0 +1,2 @@
rootProject.name = 'WS-07-Multithreading-Basics-and-Hashing'
+8
View File
@@ -0,0 +1,8 @@
package dev;
public class Main {
public static void main(String[] args) {
}
}