Skip to content

Commit 26c80e0

Browse files
authored
fix missing dependency:commons-lang3 (opensearch-project#350)
* fix missing dependency:commons-lang3 Signed-off-by: Yaliang Wu <ylwu@amazon.com> * fix link check Signed-off-by: Yaliang Wu <ylwu@amazon.com>
1 parent e5294e6 commit 26c80e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/link-check-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: lychee
1616
uses: lycheeverse/lychee-action@master
1717
with:
18-
args: --accept=200,403,429 --exclude=localhost "**/*.html" "**/*.md" "**/*.txt" "**/*.json"
18+
args: --accept=200,403,429 --exclude=localhost **/*.html **/*.md **/*.txt **/*.json
1919
env:
2020
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2121
- name: Fail if there were link errors

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,7 @@ dependencies {
585585
// used for serializing/deserializing rcf models.
586586
compile group: 'io.protostuff', name: 'protostuff-core', version: '1.7.4'
587587
compile group: 'io.protostuff', name: 'protostuff-runtime', version: '1.7.4'
588+
compileOnly group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
588589

589590
compile "org.jacoco:org.jacoco.agent:0.8.5"
590591
compile ("org.jacoco:org.jacoco.ant:0.8.5") {
@@ -602,7 +603,6 @@ dependencies {
602603
testImplementation group: 'org.powermock', name: 'powermock-api-support', version: '2.0.2'
603604
testImplementation group: 'org.powermock', name: 'powermock-reflect', version: '2.0.7'
604605
testImplementation group: 'org.objenesis', name: 'objenesis', version: '3.0.1'
605-
testImplementation group: 'org.javassist', name: 'javassist', version: '3.27.0-GA'
606606
testCompile group: 'net.bytebuddy', name: 'byte-buddy', version: '1.9.15'
607607
testCompile group: 'net.bytebuddy', name: 'byte-buddy-agent', version: '1.9.15'
608608
testCompileOnly 'org.apiguardian:apiguardian-api:1.1.0'

0 commit comments

Comments
 (0)