Skip to content

Commit f92f9c1

Browse files
committed
version bump & fix css & add ojdbc library to common module
1 parent 42de894 commit f92f9c1

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

Common/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ repositories {
77
}
88

99
dependencies {
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'

DBMonitoringWindowApp/build.gradle

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff 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'
4949
java.sourceCompatibility = JavaVersion.VERSION_15
5050
java.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+
6174
run {
6275
systemProperties['resourceBaseDir'] = ''
6376
}

DBMonitoringWindowApp/src/main/resources/fxml/HistoryMenu.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
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" />

0 commit comments

Comments
 (0)