Initial simple Java project
Java Build / build (push) Failing after 23s

This commit is contained in:
amos
2026-06-02 10:33:12 +08:00
commit 68b22e7302
3 changed files with 53 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
id 'java'
}
group = 'com.example'
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
jar {
manifest {
attributes 'Main-Class': 'com.example.HelloWorld'
}
}