File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ targetCompatibility = 1.8
15
15
16
16
repositories {
17
17
mavenCentral()
18
+ maven {
19
+ url ' file://' + new File (' repo' ). absolutePath
20
+ }
18
21
}
19
22
20
23
dependencies {
@@ -23,7 +26,10 @@ dependencies {
23
26
' org.springframework.boot:spring-boot-starter-batch' ,
24
27
' org.springframework.boot:spring-boot-starter-data-jpa' ,
25
28
' org.springframework.boot:spring-boot-starter-web' ,
26
- ' org.springframework:spring-oxm'
29
+ ' org.springframework:spring-oxm' ,
30
+ ' org.springframework.batch:spring-batch-excel:0.5.0-SNAPSHOT' ,
31
+ ' org.apache.poi:poi:3.11' ,
32
+ ' org.apache.poi:poi-ooxml:3.11'
27
33
)
28
34
runtime(
29
35
' org.liquibase:liquibase-core' ,
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ targetCompatibility = 1.8
26
26
27
27
repositories {
28
28
mavenCentral()
29
+ maven {
30
+ url ' file://' + new File (' repo' ). absolutePath
31
+ }
29
32
}
30
33
31
34
dependencyManagement {
@@ -47,7 +50,10 @@ dependencies {
47
50
' com.fasterxml.jackson.core:jackson-core' ,
48
51
' com.fasterxml.jackson.core:jackson-databind' ,
49
52
' org.springframework:spring-oxm' ,
50
- ' org.springframework.batch:spring-batch-core'
53
+ ' org.springframework.batch:spring-batch-core' ,
54
+ ' org.springframework.batch:spring-batch-excel:0.5.0-SNAPSHOT' ,
55
+ ' org.apache.poi:poi' ,
56
+ ' org.apache.poi:poi-ooxml'
51
57
52
58
)
53
59
providedCompile(
You can’t perform that action at this time.
0 commit comments