Skip to content

Commit 7ade7a3

Browse files
authored
Merge pull request #240 from Dokyeongyun/develop
2022.04.29. ~ 2022.05.09. Merge
2 parents 5d9564b + bff2629 commit 7ade7a3

23 files changed

+1130
-353
lines changed

.classpath

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="target/classes" path="src/main/java">
3+
<classpathentry kind="src" output="bin/main" path="src/main/java">
44
<attributes>
5-
<attribute name="optional" value="true"/>
6-
<attribute name="maven.pomderived" value="true"/>
5+
<attribute name="gradle_scope" value="main"/>
6+
<attribute name="gradle_used_by_scope" value="main,test"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
9+
<classpathentry kind="src" output="bin/main" path="src/main/resources">
1010
<attributes>
11-
<attribute name="maven.pomderived" value="true"/>
11+
<attribute name="gradle_scope" value="main"/>
12+
<attribute name="gradle_used_by_scope" value="main,test"/>
1213
</attributes>
1314
</classpathentry>
14-
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<classpathentry kind="src" output="bin/test" path="src/test/java">
1516
<attributes>
17+
<attribute name="gradle_scope" value="test"/>
18+
<attribute name="gradle_used_by_scope" value="test"/>
1619
<attribute name="test" value="true"/>
17-
<attribute name="optional" value="true"/>
18-
<attribute name="maven.pomderived" value="true"/>
1920
</attributes>
2021
</classpathentry>
21-
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
22-
<attributes>
23-
<attribute name="test" value="true"/>
24-
<attribute name="maven.pomderived" value="true"/>
25-
</attributes>
26-
</classpathentry>
27-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
28-
<classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
29-
<attributes>
30-
<attribute name="maven.pomderived" value="true"/>
31-
</attributes>
32-
</classpathentry>
33-
<classpathentry kind="src" path="target/generated-sources/annotations">
34-
<attributes>
35-
<attribute name="optional" value="true"/>
36-
</attributes>
37-
</classpathentry>
38-
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
39-
<attributes>
40-
<attribute name="optional" value="true"/>
41-
<attribute name="test" value="true"/>
42-
</attributes>
43-
</classpathentry>
44-
<classpathentry kind="output" path="target/classes"/>
22+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9/"/>
23+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
24+
<classpathentry kind="output" path="bin/default"/>
4525
</classpath>

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88

99
.classpath/
1010

11-
/report/
11+
/report/
12+
13+
/.gradle/
14+
15+
/build/

.project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
33
<name>DBMonitoring</name>
4-
<comment></comment>
4+
<comment>DBMonitoring</comment>
55
<projects>
66
</projects>
77
<buildSpec>
@@ -11,13 +11,13 @@
1111
</arguments>
1212
</buildCommand>
1313
<buildCommand>
14-
<name>org.eclipse.m2e.core.maven2Builder</name>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
1515
<arguments>
1616
</arguments>
1717
</buildCommand>
1818
</buildSpec>
1919
<natures>
2020
<nature>org.eclipse.jdt.core.javanature</nature>
21-
<nature>org.eclipse.m2e.core.maven2Nature</nature>
21+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
2222
</natures>
2323
</projectDescription>

build.gradle

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
plugins {
2+
id 'java'
3+
id 'application'
4+
id 'org.openjfx.javafxplugin' version '0.0.13'
5+
}
6+
7+
repositories {
8+
mavenCentral()
9+
}
10+
11+
dependencies {
12+
// Quartz Scheduler
13+
implementation 'org.quartz-scheduler:quartz:2.3.2'
14+
15+
// Jsch
16+
implementation 'com.jcraft:jsch:0.1.55'
17+
18+
// j-text-utils
19+
implementation 'com.massisframework:j-text-utils:0.3.4'
20+
21+
// Apache Commons Library
22+
implementation 'commons-beanutils:commons-beanutils:1.9.4'
23+
implementation 'commons-lang:commons-lang:2.6'
24+
implementation 'commons-io:commons-io:2.8.0'
25+
implementation 'org.apache.commons:commons-configuration2:2.7'
26+
implementation 'org.apache.commons:commons-lang3:3.11'
27+
implementation 'org.apache.commons:commons-pool2:2.11.1'
28+
implementation 'com.google.guava:guava:30.1.1-jre'
29+
30+
// Apache POI
31+
implementation 'org.apache.poi:poi:3.17'
32+
implementation 'org.apache.poi:poi-ooxml-schemas:3.17'
33+
implementation 'org.apache.poi:poi-scratchpad:3.17'
34+
implementation 'org.apache.poi:poi-ooxml:3.17'
35+
36+
// JavaFx
37+
implementation 'org.openjfx:javafx-controls:17'
38+
implementation 'org.openjfx:javafx-graphics:17'
39+
implementation 'org.openjfx:javafx-base:17'
40+
implementation 'org.openjfx:javafx-fxml:17'
41+
implementation 'org.openjfx:javafx-media:17'
42+
implementation 'com.jfoenix:jfoenix:9.0.10'
43+
implementation 'de.jensd:fontawesomefx-fontawesome:4.7.0-9.1.2'
44+
implementation 'org.fxmisc.richtext:richtextfx:0.10.9'
45+
46+
// Logback
47+
implementation 'ch.qos.logback:logback-classic:1.2.3'
48+
49+
// junit
50+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
51+
52+
// mockito
53+
testImplementation 'org.mockito:mockito-core:4.3.1'
54+
testImplementation 'org.mockito:mockito-inline:4.3.1'
55+
56+
// lombok
57+
implementation('org.projectlombok:lombok:1.18.12')
58+
testImplementation('org.projectlombok:lombok:1.18.12')
59+
annotationProcessor('org.projectlombok:lombok:1.18.12')
60+
testAnnotationProcessor('org.projectlombok:lombok:1.18.12')
61+
}
62+
63+
group = 'DBMonitoring'
64+
version = '0.0.1-SNAPSHOT'
65+
description = 'DBMonitoring'
66+
java.sourceCompatibility = JavaVersion.VERSION_1_9
67+
68+
javafx {
69+
version = '17'
70+
modules = [ 'javafx.controls', 'javafx.fxml' ]
71+
}
72+
73+
sourceSets.main.java.srcDirs = ['src/main/java']
74+
75+
application {
76+
mainClass = 'root.applications.Program'
77+
}
78+
79+
run {
80+
systemProperties['resourceBaseDir'] = ''
81+
}

gradle/wrapper/gradle-wrapper.jar

58.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)