Skip to content

Commit 9dfff3c

Browse files
committed
Consolidate dependencies
1 parent 206de7a commit 9dfff3c

File tree

9 files changed

+166
-507
lines changed

9 files changed

+166
-507
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
dependency-reduced-pom.xml
99

1010
libs/**.jar
11+
libs/*.jar

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "libs/byte-engineer"]
2+
path = libs/byte-engineer
3+
url = https://bitbucket.org/0xJAVA/byte-engineer.git
4+
[submodule "libs/fernflower"]
5+
path = libs/fernflower
6+
url = https://github.com/fesh0r/fernflower

libs/fernflower

Submodule fernflower added at adbf29f

pom.xml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,25 @@
6363
</archive>
6464
</configuration>
6565
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-dependency-plugin</artifactId>
69+
<version>3.0.0</version>
70+
<executions>
71+
<execution>
72+
<id>src-dependencies</id>
73+
<phase>package</phase>
74+
<goals>
75+
<goal>unpack-dependencies</goal>
76+
</goals>
77+
<configuration>
78+
<classifier>sources</classifier>
79+
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
80+
<outputDirectory>${project.build.directory}/sources</outputDirectory>
81+
</configuration>
82+
</execution>
83+
</executions>
84+
</plugin>
6685
</plugins>
6786
</build>
6887

@@ -92,21 +111,6 @@
92111
<artifactId>miglayout-swing</artifactId>
93112
<version>5.0</version>
94113
</dependency>
95-
<dependency>
96-
<groupId>eu.bibl</groupId>
97-
<artifactId>byteanalysis</artifactId>
98-
<version>1.0</version>
99-
</dependency>
100-
<dependency>
101-
<groupId>org.jetbrains.java.decompiler</groupId>
102-
<artifactId>fernflower</artifactId>
103-
<version>a7654eb8c9c1c7541218242c898c8ebd39d4aa6d</version>
104-
</dependency>
105-
<dependency>
106-
<groupId>com.strobel.decompiler</groupId>
107-
<artifactId>procyon</artifactId>
108-
<version>0.5.30</version>
109-
</dependency>
110114
<dependency>
111115
<groupId>org.benf</groupId>
112116
<artifactId>cfr</artifactId>

src/main/java/the/bytecode/club/jda/decompilers/ProcyonDecompiler.java

Lines changed: 0 additions & 247 deletions
This file was deleted.

0 commit comments

Comments
 (0)