forked from jxlsteam/jxls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Gradle 6.8.3 - fix whitespace - Codestyle - vulnerabilities check: poi-ooxml uses commons-compress4:1.19 <CVE-2021-35515> -> commons-compress4:1.21 Now jxls and jxls-poi have no vulnerabilities (for production).
- Loading branch information
1 parent
e77470d
commit 0c56c8a
Showing
18 changed files
with
74 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
dependencies { | ||
compile project(':jxls') | ||
compile 'org.apache.poi:poi-ooxml:4.1.2' | ||
compile 'org.slf4j:jcl-over-slf4j:1.7.30' | ||
|
||
testCompile 'junit:junit:4.12' | ||
testCompile 'org.apache.poi:ooxml-schemas:1.4' | ||
testCompile 'org.mockito:mockito-core:3.2.4' | ||
testCompile 'uk.org.lidalia:slf4j-test:1.2.0' | ||
testCompile 'org.spockframework:spock-core:1.3-groovy-2.5' | ||
testCompile 'cglib:cglib-nodep:3.3.0' | ||
testCompile 'commons-io:commons-io:2.6' | ||
testCompile 'org.apache.derby:derby:10.12.1.1' | ||
implementation project(':jxls') | ||
implementation 'org.apache.poi:poi-ooxml:4.1.2' | ||
implementation 'org.apache.commons:commons-compress:1.21' | ||
implementation 'org.slf4j:jcl-over-slf4j:1.7.30' | ||
|
||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'org.apache.poi:ooxml-schemas:1.4' | ||
testImplementation 'org.mockito:mockito-core:3.2.4' | ||
testImplementation 'uk.org.lidalia:slf4j-test:1.2.0' | ||
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5' | ||
testImplementation 'cglib:cglib-nodep:3.3.0' | ||
testImplementation 'commons-io:commons-io:2.6' | ||
testImplementation 'org.apache.derby:derby:10.12.1.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
dependencies { | ||
compile 'org.apache.commons:commons-jexl3:3.2' | ||
compile 'commons-beanutils:commons-beanutils:1.9.4' | ||
compile 'org.slf4j:jcl-over-slf4j:1.7.30' | ||
compile 'ch.qos.logback:logback-core:1.2.10' | ||
|
||
testCompile 'junit:junit:4.12' | ||
testCompile 'org.mockito:mockito-core:3.2.4' | ||
testCompile 'ch.qos.logback:logback-classic:1.2.10' | ||
testCompile 'org.spockframework:spock-core:1.3-groovy-2.5' | ||
testCompile 'cglib:cglib-nodep:3.3.0' | ||
def logbackVersion = '1.2.10' | ||
|
||
api 'org.apache.commons:commons-jexl3:3.2' | ||
api 'commons-beanutils:commons-beanutils:1.9.4' | ||
implementation 'org.slf4j:jcl-over-slf4j:1.7.30' | ||
implementation "ch.qos.logback:logback-core:$logbackVersion" | ||
|
||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'org.mockito:mockito-core:3.2.4' | ||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion" | ||
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5' | ||
testImplementation 'cglib:cglib-nodep:3.3.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
buildscript { | ||
repositories { | ||
gradlePluginPortal() | ||
} | ||
dependencies { | ||
// Vulnerabilities | ||
classpath 'org.owasp:dependency-check-gradle:6.5.0.1' | ||
} | ||
} | ||
|
||
include 'jxls' | ||
include 'jxls-poi' |