Skip to content

Commit 80e16ac

Browse files
authored
replace deprecated class from commons-lang (#65)
1 parent 587212b commit 80e16ac

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

doxia-core/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ under the License.
5959
<artifactId>commons-lang3</artifactId>
6060
<version>3.8.1</version>
6161
</dependency>
62+
<dependency>
63+
<groupId>org.apache.commons</groupId>
64+
<artifactId>commons-text</artifactId>
65+
<version>1.3</version>
66+
</dependency>
6267
<dependency>
6368
<groupId>org.apache.httpcomponents</groupId>
6469
<artifactId>httpclient</artifactId>

doxia-core/src/main/java/org/apache/maven/doxia/util/HtmlTools.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
import javax.swing.text.html.HTML.Tag;
2929

30-
import org.apache.commons.lang3.StringEscapeUtils;
30+
import org.apache.commons.text.StringEscapeUtils;
3131
import org.apache.maven.doxia.markup.HtmlMarkup;
3232
import org.codehaus.plexus.util.StringUtils;
3333

0 commit comments

Comments
 (0)