File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ repositories {
77}
88
99dependencies {
10+
11+ // ojdbc
12+ implementation ' com.oracle.database.jdbc:ojdbc6:11.2.0.4'
13+ implementation ' com.oracle.database.nls:orai18n:11.2.0.4'
1014
1115 // Apache commons pool2
1216 implementation ' commons-io:commons-io:2.8.0'
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ dependencies {
4343 implementation ' ch.qos.logback:logback-classic:1.2.3'
4444}
4545
46- group = ' DBMonitoring '
47- version = ' 0 .0.1-SNAPSHOT '
48- description = ' DBMonitoring '
46+ group = ' DBMonitoringWindowApp '
47+ version = ' 1 .0.0 '
48+ description = ' DBMonitoringWindowApp '
4949java. sourceCompatibility = JavaVersion . VERSION_15
5050java. targetCompatibility = JavaVersion . VERSION_15
5151
@@ -58,6 +58,19 @@ application {
5858 mainClass = ' root.applications.Program'
5959}
6060
61+
62+ jar {
63+ manifest {
64+ attributes ' Main-Class' : ' root.applications.Program'
65+ }
66+ from {
67+ configurations. runtimeClasspath. files. collect {
68+ it. isDirectory() ? it : zipTree(it)
69+ }
70+ }
71+ duplicatesStrategy = org.gradle.api.file.DuplicatesStrategy . EXCLUDE
72+ }
73+
6174run {
6275 systemProperties[' resourceBaseDir' ] = ' '
6376}
Original file line number Diff line number Diff line change 1818<?import javafx .scene.layout.VBox?>
1919<?import javafx .scene.text.Font?>
2020
21- <SplitPane dividerPositions =" 0.15" minHeight =" 650.0" minWidth =" 1200.0" stylesheets =" @../../../../../../../DBMonitoring/DBMonitoring/src/main/resources/ css/javaFx.css" xmlns =" http://javafx.com/javafx/17" xmlns : fx =" http://javafx.com/fxml/1" fx : controller =" root.javafx.Controller.HistoryMenuController" >
21+ <SplitPane dividerPositions =" 0.15" minHeight =" 650.0" minWidth =" 1200.0" stylesheets =" @../css/javaFx.css" xmlns =" http://javafx.com/javafx/17" xmlns : fx =" http://javafx.com/fxml/1" fx : controller =" root.javafx.Controller.HistoryMenuController" >
2222 <items >
2323 <AnchorPane maxWidth =" 200.0" minWidth =" 150.0" style =" -fx-background-color: white;" >
2424 <fx : include source =" LeftMenu.fxml" />
You can’t perform that action at this time.
0 commit comments