Skip to content

Commit 360b087

Browse files
committed
Lets give this a go, can't fuck it up too bad.
1 parent 8d5900e commit 360b087

File tree

147 files changed

+23140
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+23140
-0
lines changed

dependency-reduced-pom.xml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>the.bytecode.club</groupId>
5+
<artifactId>bytecode-viewer</artifactId>
6+
<version>3.0.0</version>
7+
<build>
8+
<sourceDirectory>src/main/java</sourceDirectory>
9+
<resources>
10+
<resource>
11+
<directory>src/main/resources</directory>
12+
</resource>
13+
</resources>
14+
<plugins>
15+
<plugin>
16+
<artifactId>maven-compiler-plugin</artifactId>
17+
<version>3.3</version>
18+
<configuration>
19+
<source>1.7</source>
20+
<target>1.7</target>
21+
<fork>true</fork>
22+
</configuration>
23+
</plugin>
24+
<plugin>
25+
<artifactId>maven-jar-plugin</artifactId>
26+
<version>2.6</version>
27+
</plugin>
28+
<plugin>
29+
<artifactId>maven-shade-plugin</artifactId>
30+
<version>2.3</version>
31+
<executions>
32+
<execution>
33+
<phase>package</phase>
34+
<goals>
35+
<goal>shade</goal>
36+
</goals>
37+
<configuration>
38+
<transformers>
39+
<transformer>
40+
<mainClass>the.bytecode.club.bytecodeviewer.BytecodeViewer</mainClass>
41+
</transformer>
42+
</transformers>
43+
<filters>
44+
<filter>
45+
<artifact>*:*</artifact>
46+
<excludes>
47+
<exclude>META-INF/*</exclude>
48+
</excludes>
49+
</filter>
50+
<filter>
51+
<artifact>com.fifesoft:rsyntaxtextarea</artifact>
52+
<includes>
53+
<include>**</include>
54+
</includes>
55+
</filter>
56+
</filters>
57+
<minimizeJar>true</minimizeJar>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
<repositories>
65+
<repository>
66+
<id>bytecode-viewer</id>
67+
<name>Bytecode Viewer Repository</name>
68+
<url>http://repo.samczsun.com/content/repositories/bytecode-viewer/</url>
69+
</repository>
70+
</repositories>
71+
<properties>
72+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
73+
</properties>
74+
</project>
75+

pom.xml

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>the.bytecode.club</groupId>
8+
<artifactId>bytecode-viewer</artifactId>
9+
<version>3.0.0</version>
10+
<properties>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
</properties>
13+
<build>
14+
<sourceDirectory>src/main/java</sourceDirectory>
15+
<resources>
16+
<resource>
17+
<directory>src/main/resources</directory>
18+
</resource>
19+
</resources>
20+
<plugins>
21+
<plugin>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<version>3.3</version>
24+
<configuration>
25+
<source>1.7</source>
26+
<target>1.7</target>
27+
<fork>true</fork>
28+
</configuration>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-jar-plugin</artifactId>
33+
<version>2.6</version>
34+
</plugin>
35+
<plugin>
36+
<artifactId>maven-shade-plugin</artifactId>
37+
<version>2.3</version>
38+
<executions>
39+
<execution>
40+
<phase>package</phase>
41+
<goals>
42+
<goal>shade</goal>
43+
</goals>
44+
<configuration>
45+
<transformers>
46+
<transformer
47+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
48+
<mainClass>the.bytecode.club.bytecodeviewer.BytecodeViewer</mainClass>
49+
</transformer>
50+
</transformers>
51+
<filters>
52+
<filter>
53+
<artifact>*:*</artifact>
54+
<excludes>
55+
<exclude>META-INF/*</exclude>
56+
</excludes>
57+
</filter>
58+
<filter>
59+
<artifact>com.fifesoft:rsyntaxtextarea</artifact>
60+
<includes>
61+
<include>**</include>
62+
</includes>
63+
</filter>
64+
</filters>
65+
<minimizeJar>true</minimizeJar>
66+
</configuration>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
</plugins>
71+
</build>
72+
73+
<repositories>
74+
<repository>
75+
<id>bytecode-viewer</id>
76+
<name>Bytecode Viewer Repository</name>
77+
<url>http://repo.samczsun.com/content/repositories/bytecode-viewer/</url>
78+
</repository>
79+
</repositories>
80+
81+
<dependencies>
82+
<dependency>
83+
<groupId>org.imgscalr</groupId>
84+
<artifactId>imgscalr-lib</artifactId>
85+
<version>4.2</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>commons-cli</groupId>
89+
<artifactId>commons-cli</artifactId>
90+
<version>1.3.1</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>commons-codec</groupId>
94+
<artifactId>commons-codec</artifactId>
95+
<version>1.10</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.codehaus.janino</groupId>
99+
<artifactId>janino</artifactId>
100+
<version>2.7.8</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>org.apache.commons</groupId>
104+
<artifactId>commons-lang3</artifactId>
105+
<version>3.4</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>commons-io</groupId>
109+
<artifactId>commons-io</artifactId>
110+
<version>2.4</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>com.fifesoft</groupId>
114+
<artifactId>rsyntaxtextarea</artifactId>
115+
<version>2.5.8</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>org.tinyjee.jgraphx</groupId>
119+
<artifactId>jgraphx</artifactId>
120+
<version>2.3.0.5</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>com.googlecode.mp4parser</groupId>
124+
<artifactId>isoparser</artifactId>
125+
<version>1.1.9</version>
126+
</dependency>
127+
<dependency>
128+
<groupId>org.ow2.asm</groupId>
129+
<artifactId>asm-all</artifactId>
130+
<version>5.0.4</version>
131+
</dependency>
132+
<dependency>
133+
<groupId>org.zeroturnaround</groupId>
134+
<artifactId>zt-zip</artifactId>
135+
<version>1.8</version>
136+
</dependency>
137+
138+
<dependency>
139+
<groupId>com.strobel</groupId>
140+
<artifactId>procyon</artifactId>
141+
<version>0.5.30</version>
142+
</dependency>
143+
<dependency>
144+
<groupId>org.benf</groupId>
145+
<artifactId>cfr</artifactId>
146+
<version>0.108</version>
147+
</dependency>
148+
<dependency>
149+
<groupId>ca.benow</groupId>
150+
<artifactId>jd</artifactId>
151+
<version>1.4.0</version>
152+
</dependency>
153+
<dependency>
154+
<groupId>eu.bibl</groupId>
155+
<artifactId>byteanalysis</artifactId>
156+
<version>1.0</version>
157+
</dependency>
158+
<dependency>
159+
<groupId>brut</groupId>
160+
<artifactId>apktool</artifactId>
161+
<version>2.0.1</version>
162+
</dependency>
163+
<dependency>
164+
<groupId>org.jetbrains.java</groupId>
165+
<artifactId>decompiler</artifactId>
166+
<version>2015-1</version>
167+
</dependency>
168+
<dependency>
169+
<groupId>dex2jar</groupId>
170+
<artifactId>dex2jar</artifactId>
171+
<version>0.0.1</version>
172+
</dependency>
173+
<dependency>
174+
<groupId>org.jf</groupId>
175+
<artifactId>smali</artifactId>
176+
<classifier>patched</classifier>
177+
<version>2.0.3</version>
178+
</dependency>
179+
<dependency>
180+
<groupId>org.jf</groupId>
181+
<artifactId>baksmali</artifactId>
182+
<version>2.0.3</version>
183+
</dependency>
184+
</dependencies>
185+
</project>

0 commit comments

Comments
 (0)