Skip to content

Commit

Permalink
OAK-10389: remove commons-lang dependency (#1058)
Browse files Browse the repository at this point in the history
  • Loading branch information
reschke committed Aug 11, 2023
1 parent f2a8101 commit b83ccfe
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 21 deletions.
6 changes: 0 additions & 6 deletions oak-lucene/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -471,11 +471,5 @@
<version>1.19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
5 changes: 0 additions & 5 deletions oak-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -615,11 +615,6 @@
<version>2.4.18</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions oak-search-elastic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,5 @@
<version>1.19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
4 changes: 2 additions & 2 deletions oak-search/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.apache.jackrabbit.oak.plugins.index;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.jackrabbit.JcrConstants;
import org.apache.jackrabbit.oak.api.CommitFailedException;
import org.apache.jackrabbit.oak.api.Tree;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
package org.apache.jackrabbit.oak.plugins.index;

import org.apache.jackrabbit.guava.common.collect.ImmutableList;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.lang3.RandomStringUtils;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.commons.PathUtils;
import org.apache.jackrabbit.oak.plugins.index.search.FulltextIndexConstants;
Expand Down

0 comments on commit b83ccfe

Please sign in to comment.