Skip to content

Commit 9447f4e

Browse files
committed
Update dependencies
1 parent ebdf389 commit 9447f4e

1 file changed

Lines changed: 23 additions & 22 deletions

File tree

pom.xml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,42 +13,42 @@
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414

1515
<!-- Dependency versions -->
16-
<annotations.version>24.0.0</annotations.version>
16+
<annotations.version>24.0.1</annotations.version>
1717
<antlr4.version>4.9.3</antlr4.version>
18-
<apktool.version>2.7.0</apktool.version>
19-
<asm.version>9.4</asm.version>
18+
<apktool.version>2.8.0</apktool.version>
19+
<asm.version>9.5</asm.version>
2020
<bined.version>0.2.0</bined.version>
2121
<byteanalysis.version>1.0bcv</byteanalysis.version>
2222
<cfr.version>0.152</cfr.version>
2323
<cloning.version>1.9.12</cloning.version>
2424
<commons-cli.version>1.5.0</commons-cli.version>
25-
<commons-codec.version>1.15</commons-codec.version>
26-
<commons-compiler.version>3.1.9</commons-compiler.version>
27-
<commons-compress.version>1.22</commons-compress.version>
28-
<commons-io.version>2.11.0</commons-io.version>
25+
<commons-codec.version>1.16.0</commons-codec.version>
26+
<commons-compiler.version>3.1.10</commons-compiler.version>
27+
<commons-compress.version>1.23.0</commons-compress.version>
28+
<commons-io.version>2.13.0</commons-io.version>
2929
<commons-lang3.version>3.12.0</commons-lang3.version>
3030
<commons-text.version>1.10.0</commons-text.version>
3131
<darklaf.version>3.0.2</darklaf.version>
3232
<darklaf-extensions-rsta.version>0.4.1</darklaf-extensions-rsta.version>
33-
<decompiler-fernflower.version>6.1.2.Final</decompiler-fernflower.version>
34-
<dex2jar.version>v59</dex2jar.version>
33+
<decompiler-fernflower.version>6.2.5.Final</decompiler-fernflower.version>
34+
<dex2jar.version>v64</dex2jar.version>
3535
<fernflower.version>e0d44f4</fernflower.version>
3636
<gson.version>2.10.1</gson.version>
37-
<guava.version>31.1-jre</guava.version>
38-
<httprequest.version>2.1.0</httprequest.version>
37+
<guava.version>32.1.1-jre</guava.version>
38+
<httprequest.version>2.2.0</httprequest.version>
3939
<imgscalr-lib.version>4.2</imgscalr-lib.version>
40-
<jadx.version>1.4.5</jadx.version>
40+
<jadx.version>1.4.7</jadx.version>
4141
<jd-gui.version>1.6.6bcv</jd-gui.version>
4242
<jgraphx.version>3.4.1.3</jgraphx.version>
4343
<js.version>21.2.0</js.version>
4444
<objenesis.version>3.3</objenesis.version>
4545
<paged-data.version>0.2.0</paged-data.version>
4646
<procyon.version>0.6.0</procyon.version>
47-
<rsyntaxtextarea.version>3.3.2</rsyntaxtextarea.version>
47+
<rsyntaxtextarea.version>3.3.3</rsyntaxtextarea.version>
4848
<semantic-version.version>2.1.1</semantic-version.version>
49-
<slf4j.version>2.0.6</slf4j.version>
50-
<smali.version>403e90375e</smali.version>
51-
<safeyaml.version>1.33.0</safeyaml.version>
49+
<slf4j.version>2.0.7</slf4j.version>
50+
<smali.version>3.0.3</smali.version>
51+
<safeyaml.version>1.34.1</safeyaml.version>
5252
<treelayout.version>1.0.3</treelayout.version>
5353
<webp-imageio.version>0.2.2</webp-imageio.version>
5454
<xpp3.version>1.1.4c</xpp3.version>
@@ -277,13 +277,13 @@
277277
<version>${slf4j.version}</version>
278278
</dependency>
279279
<dependency>
280-
<groupId>com.github.iBotPeaches.smali</groupId>
280+
<groupId>com.android.tools.smali</groupId>
281281
<artifactId>smali</artifactId>
282282
<version>${smali.version}</version>
283283
</dependency>
284284
<dependency>
285-
<groupId>com.github.iBotPeaches.smali</groupId>
286-
<artifactId>baksmali</artifactId>
285+
<groupId>com.android.tools.smali</groupId>
286+
<artifactId>smali-baksmali</artifactId>
287287
<version>${smali.version}</version>
288288
</dependency>
289289
<dependency>
@@ -398,7 +398,7 @@
398398
<plugin>
399399
<groupId>org.apache.maven.plugins</groupId>
400400
<artifactId>maven-compiler-plugin</artifactId>
401-
<version>3.10.1</version>
401+
<version>3.11.0</version>
402402
<configuration>
403403
<source>${maven.compiler.source}</source>
404404
<target>${maven.compiler.target}</target>
@@ -408,15 +408,15 @@
408408
<plugin>
409409
<groupId>org.apache.maven.plugins</groupId>
410410
<artifactId>maven-javadoc-plugin</artifactId>
411-
<version>3.4.0</version>
411+
<version>3.5.0</version>
412412
<configuration>
413413
<source>${maven.compiler.source}</source>
414414
</configuration>
415415
</plugin>
416416
<plugin>
417417
<groupId>org.apache.maven.plugins</groupId>
418418
<artifactId>maven-shade-plugin</artifactId>
419-
<version>3.3.0</version>
419+
<version>3.4.1</version>
420420
<executions>
421421
<execution>
422422
<phase>package</phase>
@@ -437,6 +437,7 @@
437437
<exclude>META-INF/*LICENSE*</exclude>
438438
<exclude>META-INF/*NOTICE*</exclude>
439439
<exclude>META-INF/MANIFEST.MF</exclude>
440+
<exclude>LICENSE</exclude>
440441
</excludes>
441442
</filter>
442443
<!-- Ignore all ASM-related files from d2j-external but MCTLE fix -->

0 commit comments

Comments
 (0)