@@ -9,32 +9,51 @@ repositories {
99}
1010
1111dependencies {
12+ // Quartz Scheduler
1213 implementation ' org.quartz-scheduler:quartz:2.3.2'
13- implementation ' com.oracle.database.jdbc:ojdbc6:11.2.0.4'
14- implementation ' org.apache.commons:commons-configuration2:2.7'
15- implementation ' commons-beanutils:commons-beanutils:1.9.4'
14+
15+ // Jsch
1616 implementation ' com.jcraft:jsch:0.1.55'
17- implementation ' commons-io:commons-io:2.8.0'
17+
18+ // j-text-utils
1819 implementation ' com.massisframework:j-text-utils:0.3.4'
19- implementation ' commons-lang:commons-lang:2.6'
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'
2028 implementation ' com.google.guava:guava:30.1.1-jre'
29+
30+ // Apache POI
2131 implementation ' org.apache.poi:poi:3.17'
2232 implementation ' org.apache.poi:poi-ooxml-schemas:3.17'
2333 implementation ' org.apache.poi:poi-scratchpad:3.17'
2434 implementation ' org.apache.poi:poi-ooxml:3.17'
25- implementation ' com.jfoenix:jfoenix:9.0.10'
35+
36+ // JavaFx
2637 implementation ' org.openjfx:javafx-controls:17'
2738 implementation ' org.openjfx:javafx-graphics:17'
2839 implementation ' org.openjfx:javafx-base:17'
2940 implementation ' org.openjfx:javafx-fxml:17'
3041 implementation ' org.openjfx:javafx-media:17'
42+ implementation ' com.jfoenix:jfoenix:9.0.10'
3143 implementation ' de.jensd:fontawesomefx-fontawesome:4.7.0-9.1.2'
32- implementation ' org.apache.commons:commons-lang3:3.11'
44+ implementation ' org.fxmisc.richtext:richtextfx:0.10.9'
45+
46+ // Logback
3347 implementation ' ch.qos.logback:logback-classic:1.2.3'
34- implementation ' org.apache.commons:commons-pool2:2.11.1'
48+
49+ // junit
3550 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.0'
51+
52+ // mockito
3653 testImplementation ' org.mockito:mockito-core:4.3.1'
3754 testImplementation ' org.mockito:mockito-inline:4.3.1'
55+
56+ // lombok
3857 implementation(' org.projectlombok:lombok:1.18.12' )
3958 testImplementation(' org.projectlombok:lombok:1.18.12' )
4059 annotationProcessor(' org.projectlombok:lombok:1.18.12' )
0 commit comments