Skip to content

Commit

Permalink
update dependency on commons-lang to commons-lang3
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed Aug 21, 2023
1 parent f354ebe commit 388d3f2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions adam-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@
<artifactId>commons-io</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.bdgenomics.adam.util

import java.io.PrintWriter
import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils
import org.bdgenomics.adam.util.TextAlignment.TextAlignment

/**
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<properties>
<java.version>1.8</java.version>
<avro.version>1.11.1</avro.version>
<scala.version>2.12.15</scala.version>
<scala.version>2.12.17</scala.version>
<scala.version.prefix>2.12</scala.version.prefix>
<spark.version>3.3.3</spark.version>
<parquet.version>1.12.3</parquet.version>
Expand Down Expand Up @@ -332,6 +332,11 @@
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
Expand Down

0 comments on commit 388d3f2

Please sign in to comment.