Skip to content

Commit

Permalink
Upgrade POI to 5.1.0 Fixes #266
Browse files Browse the repository at this point in the history
  • Loading branch information
cfsimplicity committed Nov 2, 2021
1 parent 1910565 commit 65090c7
Show file tree
Hide file tree
Showing 16 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Spreadsheet.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ component accessors="true"{

//"static"
property name="version" default="3.0.0-develop" setter="false";
property name="osgiLibBundleVersion" default="5.0.0.4" setter="false"; //first 3 octets = POI version; increment 4th with other jar updates
property name="osgiLibBundleVersion" default="5.1.0.0" setter="false"; //first 3 octets = POI version; increment 4th with other jar updates
property name="osgiLibBundleSymbolicName" default="spreadsheet-cfml" setter="false";
property name="exceptionType" default="cfsimplicity.spreadsheet" setter="false";
//commonly invoked POI class names
Expand Down
15 changes: 8 additions & 7 deletions build/lib-osgi.mf
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Spreadsheet CFML
Bundle-SymbolicName: spreadsheet-cfml
Bundle-Version: 5.0.0.4
Bundle-Version: 5.1.0.0
Bundle-ClassPath: commons-codec-1.15.jar,
commons-collections4-4.4.jar,
commons-compress-1.20.jar,
commons-compress-1.21.jar,
commons-csv-1.9.0.jar,
commons-io-2.8.0.jar,
commons-io-2.11.0.jar,
commons-math3-3.6.1.jar,
poi-5.0.0.jar,
poi-ooxml-5.0.0.jar,
poi-ooxml-full-5.0.0.jar,
log4j-api-2.14.1.jar,
poi-5.1.0.jar,
poi-ooxml-5.1.0.jar,
poi-ooxml-full-5.1.0.jar,
SparseBitSet-1.2.jar,
spreadsheet-cfml.jar,
xmlbeans-4.0.0.jar
xmlbeans-5.0.2.jar
4 changes: 2 additions & 2 deletions build/task.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ component{
variables.libPath = variables.rootPath & "lib/";
variables.classpathDirectories = [
variables.srcPath
,variables.libPath & "poi-ooxml-5.0.0.jar"
,variables.libPath & "xmlbeans-4.0.0.jar"
,variables.libPath & "poi-ooxml-5.1.0.jar"
,variables.libPath & "xmlbeans-5.0.2.jar"
];
var jarFileName = "spreadsheet-cfml.jar";
var classNames = [ "HeaderImageVML" ]; //allows for more source files in future
Expand Down
Binary file modified lib-osgi.jar
Binary file not shown.
Binary file removed lib/commons-compress-1.20.jar
Binary file not shown.
Binary file added lib/commons-compress-1.21.jar
Binary file not shown.
Binary file added lib/commons-io-2.11.0.jar
Binary file not shown.
Binary file removed lib/commons-io-2.8.0.jar
Binary file not shown.
Binary file added lib/log4j-api-2.14.1.jar
Binary file not shown.
Binary file renamed lib/poi-5.0.0.jar → lib/poi-5.1.0.jar
Binary file not shown.
Binary file removed lib/poi-ooxml-5.0.0.jar
Binary file not shown.
Binary file added lib/poi-ooxml-5.1.0.jar
Binary file not shown.
Binary file not shown.
Binary file modified lib/spreadsheet-cfml.jar
Binary file not shown.
Binary file removed lib/xmlbeans-4.0.0.jar
Binary file not shown.
Binary file added lib/xmlbeans-5.0.2.jar
Binary file not shown.

0 comments on commit 65090c7

Please sign in to comment.