summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 11 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index 11bf07b..1a2ef44 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,12 +20,18 @@ dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
+jar {
+ manifest {
+ attributes 'Main-Class': "org.unitConverter.converterGUI.UnitConverterGUI"
+ }
+}
+
test {
- useJUnitPlatform()
- testLogging {
- events 'passed', 'skipped', 'failed'
- }
- finalizedBy jacocoTestReport
+ useJUnitPlatform()
+ testLogging {
+ events 'passed', 'skipped', 'failed'
+ }
+ finalizedBy jacocoTestReport
}
jacoco {