Skip to content

Commit 3e011cc

Browse files
authored
Poi 5.2.3 (pjfanning#142)
1 parent 737a3fb commit 3e011cc

File tree

2 files changed

+27
-11
lines changed

2 files changed

+27
-11
lines changed

build.gradle

+3-11
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ sourceCompatibility = 1.8
2424

2525
repositories {
2626
mavenCentral()
27-
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
27+
//maven { url 'https://repository.apache.org/content/repositories/staging' }
2828
}
2929

3030
dependencies {
31-
api 'org.apache.poi:poi:5.2.2'
32-
api 'org.apache.poi:poi-ooxml:5.2.2'
31+
api 'org.apache.poi:poi:5.2.3'
32+
api 'org.apache.poi:poi-ooxml:5.2.3'
3333
implementation 'com.github.pjfanning:poi-shared-strings:2.5.3'
3434
implementation 'org.slf4j:slf4j-api:1.7.36'
3535
implementation 'commons-io:commons-io:2.11.0'
@@ -65,18 +65,10 @@ nexusPublishing {
6565

6666
publish.dependsOn cyclonedxBom
6767

68-
/*
69-
def bomFile = layout.buildDirectory.file('reports/bom.xml')
70-
def bomArtifact = artifacts.add('archives', bomFile.asFile) {
71-
type 'bom'
72-
}
73-
*/
74-
7568
publishing {
7669
publications {
7770
mavenJava(MavenPublication) {
7871
from(components.java)
79-
//artifact bomArtifact
8072
pom {
8173
name = 'excel-streaming-reader'
8274
description = 'Streaming Excel reader'

src/main/java/com/github/pjfanning/xlsx/impl/StreamingSheet.java

+24
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,14 @@ public double getMargin(short margin) {
688688
throw new UnsupportedOperationException();
689689
}
690690

691+
/**
692+
* Not supported
693+
*/
694+
@Override
695+
public double getMargin(PageMargin margin) {
696+
throw new UnsupportedOperationException();
697+
}
698+
691699
/**
692700
* Update operations are not supported
693701
*/
@@ -696,6 +704,14 @@ public void setMargin(short margin, double size) {
696704
throw new UnsupportedOperationException("update operations are not supported");
697705
}
698706

707+
/**
708+
* Update operations are not supported
709+
*/
710+
@Override
711+
public void setMargin(PageMargin margin, double size) {
712+
throw new UnsupportedOperationException("update operations are not supported");
713+
}
714+
699715
/**
700716
* Not supported
701717
*/
@@ -800,6 +816,14 @@ public void createSplitPane(int xSplitPos, int ySplitPos, int leftmostColumn, in
800816
throw new UnsupportedOperationException();
801817
}
802818

819+
/**
820+
* Not supported
821+
*/
822+
@Override
823+
public void createSplitPane(int xSplitPos, int ySplitPos, int leftmostColumn, int topRow, PaneType activePane) {
824+
throw new UnsupportedOperationException();
825+
}
826+
803827
/**
804828
* Update operations are not supported
805829
*/

0 commit comments

Comments
 (0)