Skip to content

Commit b69de61

Browse files
committed
Separate Core module from DBMonitoringWindowApp module
1 parent 9799a66 commit b69de61

File tree

66 files changed

+647
-633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+647
-633
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@
1515
/.gradle/
1616

1717
/build/
18+
19+
.vscode/

.project

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,9 @@
22
<projectDescription>
33
<name>DBMonitoring</name>
44
<comment></comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
</buildSpec>
14-
<natures>
15-
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
16-
</natures>
5+
<projects/>
6+
<natures/>
7+
<buildSpec/>
8+
<linkedResources/>
9+
<filteredResources/>
1710
</projectDescription>

Core/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/build/
2+
/bin/

Core/build.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}
8+
9+
dependencies {
10+
11+
// Another module
12+
implementation project(':Utils')
13+
implementation project(':Common')
14+
15+
// j-text-utils
16+
implementation 'com.massisframework:j-text-utils:0.3.4'
17+
18+
// Apache Commons Library
19+
implementation 'commons-io:commons-io:2.8.0'
20+
implementation 'org.apache.commons:commons-configuration2:2.7'
21+
22+
// Apache POI
23+
implementation 'org.apache.poi:poi:3.17'
24+
implementation 'org.apache.poi:poi-ooxml-schemas:3.17'
25+
implementation 'org.apache.poi:poi-scratchpad:3.17'
26+
implementation 'org.apache.poi:poi-ooxml:3.17'
27+
28+
// Logback
29+
implementation 'ch.qos.logback:logback-classic:1.2.3'
30+
}

0 commit comments

Comments
 (0)