We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c648ca commit 587a83eCopy full SHA for 587a83e
build.gradle
@@ -29,7 +29,10 @@ jar {
29
30
dependencies {
31
implementation 'org.dom4j:dom4j:2.1.3'
32
- implementation 'org.apache.commons:commons-text:1.10.0'
+ implementation('org.apache.commons:commons-text:1.10.0') {
33
+ // Because the transitive dependency already exists in halo.
34
+ exclude group: 'org.apache.commons', module: 'commons-lang3'
35
+ }
36
37
implementation platform('run.halo.tools.platform:plugin:2.9.0-SNAPSHOT')
38
compileOnly 'run.halo.app:api'
0 commit comments