Skip to content

Commit

Permalink
fix missing dependency:commons-lang3 (opensearch-project#350)
Browse files Browse the repository at this point in the history
* fix missing dependency:commons-lang3

Signed-off-by: Yaliang Wu <[email protected]>

* fix link check

Signed-off-by: Yaliang Wu <[email protected]>
Signed-off-by: Amit Galitzky <[email protected]>
  • Loading branch information
ylwu-amzn authored and amitgalitz committed Jan 13, 2022
1 parent b6b6960 commit c85776a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/link-check-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: lychee
uses: lycheeverse/lychee-action@master
with:
args: --accept=200,403,429 --exclude=localhost "**/*.html" "**/*.md" "**/*.txt" "**/*.json"
args: --accept=200,403,429 --exclude=localhost **/*.html **/*.md **/*.txt **/*.json
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Fail if there were link errors
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ dependencies {
// used for serializing/deserializing rcf models.
compile group: 'io.protostuff', name: 'protostuff-core', version: '1.7.4'
compile group: 'io.protostuff', name: 'protostuff-runtime', version: '1.7.4'
compileOnly group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'

compile "org.jacoco:org.jacoco.agent:0.8.5"
compile ("org.jacoco:org.jacoco.ant:0.8.5") {
Expand All @@ -607,7 +608,6 @@ dependencies {
testImplementation group: 'org.powermock', name: 'powermock-api-support', version: '2.0.2'
testImplementation group: 'org.powermock', name: 'powermock-reflect', version: '2.0.7'
testImplementation group: 'org.objenesis', name: 'objenesis', version: '3.0.1'
testImplementation group: 'org.javassist', name: 'javassist', version: '3.27.0-GA'
testCompile group: 'net.bytebuddy', name: 'byte-buddy', version: '1.9.15'
testCompile group: 'net.bytebuddy', name: 'byte-buddy-agent', version: '1.9.15'
testCompileOnly 'org.apiguardian:apiguardian-api:1.1.0'
Expand Down

0 comments on commit c85776a

Please sign in to comment.