Skip to content

Commit 51cf0dd

Browse files
committed
Fix Gradle build scripts
1 parent dda7e2b commit 51cf0dd

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

spring-boot/build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ targetCompatibility = 1.8
1515

1616
repositories {
1717
mavenCentral()
18+
maven {
19+
url 'file://' + new File('repo').absolutePath
20+
}
1821
}
1922

2023
dependencies {
@@ -23,7 +26,10 @@ dependencies {
2326
'org.springframework.boot:spring-boot-starter-batch',
2427
'org.springframework.boot:spring-boot-starter-data-jpa',
2528
'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'
2733
)
2834
runtime(
2935
'org.liquibase:liquibase-core',

spring/build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ targetCompatibility = 1.8
2626

2727
repositories {
2828
mavenCentral()
29+
maven {
30+
url 'file://' + new File('repo').absolutePath
31+
}
2932
}
3033

3134
dependencyManagement {
@@ -47,7 +50,10 @@ dependencies {
4750
'com.fasterxml.jackson.core:jackson-core',
4851
'com.fasterxml.jackson.core:jackson-databind',
4952
'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'
5157

5258
)
5359
providedCompile(

0 commit comments

Comments
 (0)