Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • uekeh/assessment-2
1 result
Select Git revision
Show changes
Commits on Source (3)
......@@ -7,6 +7,7 @@ buildscript {
plugins {
id 'application'
id 'jacoco'
}
group 'org.example'
......@@ -44,3 +45,7 @@ task fatJar(type: Jar) {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
jacocoTestReport {
dependsOn test // tests are required to run before generating the report
}
\ No newline at end of file
......@@ -12,7 +12,7 @@ public class Main {
DotsAndBoxesGrid grid = new DotsAndBoxesGrid(15, 8, 2);
// FIXME: Update this label to show your name and student number
JLabel label = new JLabel("Name: (Your name and student number goes here)");
JLabel label = new JLabel("Name: Ugochukwu Ekeh 220264254");
JPanel borderPane = new JPanel(new BorderLayout());
borderPane.add(label, BorderLayout.SOUTH);
......