Skip to content

Commit 5d9564b

Browse files
authored
Merge pull request #224 from Dokyeongyun/develop
2022.04.16. ~ 2022.04.25. Merge
2 parents 81edd7d + caa5b55 commit 5d9564b

29 files changed

+1026
-762
lines changed

config/common.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
db.setting.contents=host,sid,user,password,port,driver,url
44
db.setting.oracle.driver.combo=thin
55

6-
# Server Setting Contents
7-
server.setting.dateformat.combo=yyyy-MM-dd,EEE MMM dd HH:mm:ss yyyy
8-
96
# DB Monitoring Contents
107
db.monitoring.contents=Archive Usage,TableSpace Usage,ASM Disk Usage
118

pom.xml

Lines changed: 121 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -3,205 +3,211 @@
33
<groupId>DBMonitoring</groupId>
44
<artifactId>DBMonitoring</artifactId>
55
<version>0.0.1-SNAPSHOT</version>
6-
<build>
7-
<plugins>
8-
<plugin>
9-
<groupId>org.apache.maven.plugins</groupId>
10-
<artifactId>maven-compiler-plugin</artifactId>
11-
<configuration>
12-
<source>9</source>
13-
<target>9</target>
14-
</configuration>
15-
</plugin>
16-
</plugins>
17-
</build>
18-
19-
<dependencies>
6+
<build>
7+
<plugins>
8+
<plugin>
9+
<groupId>org.apache.maven.plugins</groupId>
10+
<artifactId>maven-compiler-plugin</artifactId>
11+
<configuration>
12+
<source>9</source>
13+
<target>9</target>
14+
</configuration>
15+
</plugin>
16+
</plugins>
17+
</build>
18+
19+
<dependencies>
2020
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
2121
<dependency>
22-
<groupId>org.quartz-scheduler</groupId>
23-
<artifactId>quartz</artifactId>
24-
<version>2.3.2</version>
22+
<groupId>org.quartz-scheduler</groupId>
23+
<artifactId>quartz</artifactId>
24+
<version>2.3.2</version>
2525
</dependency>
26-
26+
2727
<!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc6 -->
2828
<dependency>
2929
<groupId>com.oracle.database.jdbc</groupId>
3030
<artifactId>ojdbc6</artifactId>
3131
<version>11.2.0.4</version>
3232
</dependency>
33-
33+
3434
<!-- commons-configuration2 -->
3535
<dependency>
36-
<groupId>org.apache.commons</groupId>
37-
<artifactId>commons-configuration2</artifactId>
38-
<version>2.7</version>
36+
<groupId>org.apache.commons</groupId>
37+
<artifactId>commons-configuration2</artifactId>
38+
<version>2.7</version>
3939
</dependency>
40-
40+
4141
<!-- commons-beanutils -->
4242
<dependency>
43-
<groupId>commons-beanutils</groupId>
44-
<artifactId>commons-beanutils</artifactId>
45-
<version>1.9.4</version>
43+
<groupId>commons-beanutils</groupId>
44+
<artifactId>commons-beanutils</artifactId>
45+
<version>1.9.4</version>
4646
</dependency>
47-
47+
4848
<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
4949
<dependency>
50-
<groupId>com.jcraft</groupId>
51-
<artifactId>jsch</artifactId>
52-
<version>0.1.55</version>
50+
<groupId>com.jcraft</groupId>
51+
<artifactId>jsch</artifactId>
52+
<version>0.1.55</version>
5353
</dependency>
54-
54+
5555
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
5656
<dependency>
57-
<groupId>commons-io</groupId>
58-
<artifactId>commons-io</artifactId>
59-
<version>2.8.0</version>
57+
<groupId>commons-io</groupId>
58+
<artifactId>commons-io</artifactId>
59+
<version>2.8.0</version>
6060
</dependency>
61-
61+
6262
<!-- https://mvnrepository.com/artifact/com.massisframework/j-text-utils -->
6363
<dependency>
64-
<groupId>com.massisframework</groupId>
65-
<artifactId>j-text-utils</artifactId>
66-
<version>0.3.4</version>
64+
<groupId>com.massisframework</groupId>
65+
<artifactId>j-text-utils</artifactId>
66+
<version>0.3.4</version>
6767
</dependency>
6868

6969
<!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
7070
<dependency>
71-
<groupId>commons-lang</groupId>
72-
<artifactId>commons-lang</artifactId>
73-
<version>2.6</version>
71+
<groupId>commons-lang</groupId>
72+
<artifactId>commons-lang</artifactId>
73+
<version>2.6</version>
7474
</dependency>
75-
75+
7676
<!-- Guava -->
7777
<dependency>
78-
<groupId>com.google.guava</groupId>
79-
<artifactId>guava</artifactId>
80-
<version>30.1.1-jre</version>
78+
<groupId>com.google.guava</groupId>
79+
<artifactId>guava</artifactId>
80+
<version>30.1.1-jre</version>
8181
</dependency>
82-
82+
8383
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
8484
<dependency>
85-
<groupId>org.apache.poi</groupId>
86-
<artifactId>poi</artifactId>
87-
<version>3.17</version>
85+
<groupId>org.apache.poi</groupId>
86+
<artifactId>poi</artifactId>
87+
<version>3.17</version>
8888
</dependency>
8989

9090
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
9191
<dependency>
92-
<groupId>org.apache.poi</groupId>
93-
<artifactId>poi-ooxml-schemas</artifactId>
94-
<version>3.17</version>
92+
<groupId>org.apache.poi</groupId>
93+
<artifactId>poi-ooxml-schemas</artifactId>
94+
<version>3.17</version>
9595
</dependency>
96-
96+
9797
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
9898
<dependency>
99-
<groupId>org.apache.poi</groupId>
100-
<artifactId>poi-scratchpad</artifactId>
101-
<version>3.17</version>
99+
<groupId>org.apache.poi</groupId>
100+
<artifactId>poi-scratchpad</artifactId>
101+
<version>3.17</version>
102102
</dependency>
103-
103+
104104
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
105105
<dependency>
106-
<groupId>org.apache.poi</groupId>
107-
<artifactId>poi-ooxml</artifactId>
108-
<version>3.17</version>
106+
<groupId>org.apache.poi</groupId>
107+
<artifactId>poi-ooxml</artifactId>
108+
<version>3.17</version>
109109
</dependency>
110-
110+
111111
<!-- JavaFX UI -->
112112
<dependency>
113-
<groupId>com.jfoenix</groupId>
114-
<artifactId>jfoenix</artifactId>
115-
<version>9.0.10</version>
113+
<groupId>com.jfoenix</groupId>
114+
<artifactId>jfoenix</artifactId>
115+
<version>9.0.10</version>
116116
</dependency>
117-
117+
118118
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
119119
<dependency>
120-
<groupId>org.openjfx</groupId>
121-
<artifactId>javafx-controls</artifactId>
122-
<version>17</version>
120+
<groupId>org.openjfx</groupId>
121+
<artifactId>javafx-controls</artifactId>
122+
<version>17</version>
123123
</dependency>
124-
124+
125125
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-graphics -->
126126
<dependency>
127-
<groupId>org.openjfx</groupId>
128-
<artifactId>javafx-graphics</artifactId>
129-
<version>17</version>
127+
<groupId>org.openjfx</groupId>
128+
<artifactId>javafx-graphics</artifactId>
129+
<version>17</version>
130130
</dependency>
131-
131+
132132
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base -->
133133
<dependency>
134-
<groupId>org.openjfx</groupId>
135-
<artifactId>javafx-base</artifactId>
136-
<version>17</version>
134+
<groupId>org.openjfx</groupId>
135+
<artifactId>javafx-base</artifactId>
136+
<version>17</version>
137137
</dependency>
138138

139139
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-fxml -->
140140
<dependency>
141-
<groupId>org.openjfx</groupId>
142-
<artifactId>javafx-fxml</artifactId>
143-
<version>17</version>
141+
<groupId>org.openjfx</groupId>
142+
<artifactId>javafx-fxml</artifactId>
143+
<version>17</version>
144144
</dependency>
145-
145+
146146
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-media -->
147147
<dependency>
148-
<groupId>org.openjfx</groupId>
149-
<artifactId>javafx-media</artifactId>
150-
<version>17</version>
148+
<groupId>org.openjfx</groupId>
149+
<artifactId>javafx-media</artifactId>
150+
<version>17</version>
151151
</dependency>
152-
152+
153153
<!-- https://mvnrepository.com/artifact/de.jensd/fontawesomefx-fontawesome -->
154154
<dependency>
155-
<groupId>de.jensd</groupId>
156-
<artifactId>fontawesomefx-fontawesome</artifactId>
157-
<version>4.7.0-9.1.2</version>
155+
<groupId>de.jensd</groupId>
156+
<artifactId>fontawesomefx-fontawesome</artifactId>
157+
<version>4.7.0-9.1.2</version>
158158
</dependency>
159-
159+
160160
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
161161
<dependency>
162-
<groupId>org.projectlombok</groupId>
163-
<artifactId>lombok</artifactId>
164-
<version>1.18.12</version>
165-
<scope>provided</scope>
162+
<groupId>org.projectlombok</groupId>
163+
<artifactId>lombok</artifactId>
164+
<version>1.18.12</version>
165+
<scope>provided</scope>
166166
</dependency>
167-
167+
168168
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
169169
<dependency>
170-
<groupId>org.apache.commons</groupId>
171-
<artifactId>commons-lang3</artifactId>
172-
<version>3.11</version>
170+
<groupId>org.apache.commons</groupId>
171+
<artifactId>commons-lang3</artifactId>
172+
<version>3.11</version>
173173
</dependency>
174-
174+
175175
<!-- Junit-jupiter-api -->
176176
<dependency>
177-
<groupId>org.junit.jupiter</groupId>
178-
<artifactId>junit-jupiter-api</artifactId>
179-
<version>5.7.0</version>
180-
<scope>test</scope>
177+
<groupId>org.junit.jupiter</groupId>
178+
<artifactId>junit-jupiter-api</artifactId>
179+
<version>5.7.0</version>
180+
<scope>test</scope>
181181
</dependency>
182-
182+
183183
<!-- mockito-core -->
184184
<dependency>
185-
<groupId>org.mockito</groupId>
186-
<artifactId>mockito-core</artifactId>
187-
<version>4.3.1</version>
188-
<scope>test</scope>
185+
<groupId>org.mockito</groupId>
186+
<artifactId>mockito-core</artifactId>
187+
<version>4.3.1</version>
188+
<scope>test</scope>
189189
</dependency>
190-
190+
191191
<!-- mockito-inline -->
192192
<dependency>
193-
<groupId>org.mockito</groupId>
194-
<artifactId>mockito-inline</artifactId>
195-
<version>4.3.1</version>
196-
<scope>test</scope>
193+
<groupId>org.mockito</groupId>
194+
<artifactId>mockito-inline</artifactId>
195+
<version>4.3.1</version>
196+
<scope>test</scope>
197197
</dependency>
198198

199199
<!-- logback -->
200200
<dependency>
201-
<groupId>ch.qos.logback</groupId>
202-
<artifactId>logback-classic</artifactId>
203-
<version>1.2.3</version>
201+
<groupId>ch.qos.logback</groupId>
202+
<artifactId>logback-classic</artifactId>
203+
<version>1.2.3</version>
204+
</dependency>
205+
206+
<!-- Apache commons-pool2 -->
207+
<dependency>
208+
<groupId>org.apache.commons</groupId>
209+
<artifactId>commons-pool2</artifactId>
210+
<version>2.11.1</version>
204211
</dependency>
205-
206212
</dependencies>
207213
</project>

0 commit comments

Comments
 (0)