From 86a0071dcee1b78443b6be1cfeb15a1f36102b5b Mon Sep 17 00:00:00 2001
From: Hallvard Traetteberg <hal@ntnu.no>
Date: Fri, 16 Aug 2019 14:56:20 +0200
Subject: [PATCH] Added jacoco to gradle build

---
 simpleexample/build.gradle | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/simpleexample/build.gradle b/simpleexample/build.gradle
index 01d55f6..96a8e54 100644
--- a/simpleexample/build.gradle
+++ b/simpleexample/build.gradle
@@ -1,6 +1,11 @@
 plugins {
+	// java application with main method
 	id 'application'
+	// use javafx modules
     id 'org.openjfx.javafxplugin' version '0.0.8'
+    
+	// test coverage
+    id 'jacoco'
 }
 
 repositories {
@@ -18,7 +23,7 @@ javafx {
 	version = '12'
     modules = [ 'javafx.controls', 'javafx.fxml' ]
     // run with --debug-jvm flag and
-    // launch debugger using Remove Java Application debug launch configuration
+    // launch debugger using Remote Java Application debug launch configuration
 }
 
 
-- 
GitLab