ADD:: Added dashboard

added controller class and functionality to switch between sections
This commit is contained in:
Sem van der Hoeven
2019-03-11 14:05:26 +01:00
parent 2e1becbe32
commit aabe922f8f
8 changed files with 186 additions and 11 deletions

View File

@@ -1,11 +1,18 @@
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
classpath("org.openjfx:javafx-plugin:0.0.7")
}
}
//plugins {
// id "org.openjfx.javafxplugin" version "0.0.7"
//}
apply plugin: 'java'
apply plugin: 'eclipse'
@@ -15,9 +22,11 @@ apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
//apply plugin: 'org.openjfx.javafxplugin'
tasks.withType(Checkstyle) {
reports {
html.destination rootProject.file("reports/checkstyle.html")
html.destination rootProject.file("build/reports/checkstyle.html")
}
}
@@ -81,3 +90,5 @@ jacocoTestReport {
bootJar {
mainClassName = 'Client.Application'
}