Skip to content

Commit

Permalink
Add apache dependency used in CatalogViewContextParser (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski authored Jan 19, 2024
1 parent 0393dfe commit 909ac2b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions tds-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ dependencies {
api "org.hibernate.validator:hibernate-validator:${depVersion.hibernateValidator}"
api "org.hibernate.validator:hibernate-validator-annotation-processor:${depVersion.hibernateValidator}"
api 'jakarta.el:jakarta.el-api'
api'org.apache.commons:commons-lang3:3.4'
runtime 'org.glassfish:javax.el:3.0.0'
runtime "jaxen:jaxen:${depVersion.jaxen}"

Expand Down
1 change: 0 additions & 1 deletion tds-testing-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dependencies {
api 'org.hamcrest:hamcrest-core:2.2'

// only needed for it subproject
api 'org.apache.commons:commons-lang3:3.4' // replace?
api 'org.xmlunit:xmlunit-core:2.7.0' // For comparing catalog XML.

}
Expand Down
1 change: 1 addition & 0 deletions tds/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ dependencies {
compile 'com.google.code.findbugs:jsr305'
compile 'com.google.guava:guava'
compile 'joda-time:joda-time'
compile 'org.apache.commons:commons-lang3'

// WaterML
compile 'org.apache.xmlbeans:xmlbeans'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package thredds.server.catalogservice;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.json.JSONArray;
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down

0 comments on commit 909ac2b

Please sign in to comment.