We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
re2j
1 parent 7f45dbb commit 945c5faCopy full SHA for 945c5fa
CHANGES.md
@@ -1,5 +1,10 @@
1
# jsoup Changelog
2
3
+## 1.22.2 (PENDING)
4
+
5
+### Bug Fixes
6
+* Android (R8/ProGuard): added a rule to ignore the optional `re2j` dependency when not present. [#2459](https://github.com/jhy/jsoup/issues/2459)
7
8
## 1.22.1 (2026-Jan-01)
9
10
### Improvements
pom.xml
@@ -327,6 +327,10 @@
327
</plugin>
328
</plugins>
329
<resources>
330
+ <resource>
331
+ <directory>src/main/resources</directory>
332
+ <filtering>false</filtering>
333
+ </resource>
334
<resource>
335
<directory>./</directory>
336
<targetPath>META-INF/jsoup/</targetPath>
src/main/resources/META-INF/proguard/org.jsoup_jsoup.pro
@@ -0,0 +1 @@
+-dontwarn com.google.re2j.**
0 commit comments