Skip to content

Commit 487dfe8

Browse files
Merge pull request #25 from DDS-GmbH/refactor/poi5
Update to apache poi 5.0.0
2 parents a808432 + e21a524 commit 487dfe8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.docu-tools'
9-
version = '1.0.4'
9+
version = '1.1.0'
1010
sourceCompatibility = 17
1111
targetCompatibility = 17
1212

@@ -47,10 +47,12 @@ publishing {
4747
}
4848
}
4949

50+
def apachePOIVersion = '5.0.0'
51+
5052
dependencies {
51-
implementation("org.apache.poi:poi:4.1.2")
52-
implementation("org.apache.poi:poi-ooxml:4.1.2")
53-
implementation("org.apache.poi:poi-ooxml-schemas:4.1.2")
53+
implementation("org.apache.poi:poi:$apachePOIVersion")
54+
implementation("org.apache.poi:poi-ooxml:$apachePOIVersion")
55+
implementation("org.apache.poi:poi-ooxml-lite:$apachePOIVersion")
5456

5557
testImplementation('org.junit.jupiter:junit-jupiter:5.8.1')
5658
testImplementation("org.hamcrest:hamcrest:2.2")

0 commit comments

Comments
 (0)