ADD:: Added dashboard
added controller class and functionality to switch between sections
This commit is contained in:
13
build.gradle
13
build.gradle
@@ -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'
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user