This commit is contained in:
legendary-cookie
2021-10-18 17:54:09 +02:00
commit bdabf0017a
28 changed files with 463 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
plugins {
id 'java'
}
group 'org.example'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes(
'Main-Class': 'de.vincentschweiger.calltoj.CallToJ'
)
}
}