5389e0222d
Signed-off-by: northdpole <morfeas3000@gmail.com>
243 lines
No EOL
9.4 KiB
XML
243 lines
No EOL
9.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<!-- Todo: add assembly plugin, -->
|
|
<!-- TODO: add testing and plugin compile goals -->
|
|
<!-- Todo: add Style checking -->
|
|
|
|
<groupId>the.bytecode.club</groupId>
|
|
<artifactId>bytecode-viewer</artifactId>
|
|
<version>3.0.0</version>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<fork>true</fork>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>the.bytecode.club.bytecodeviewer.BytecodeViewer</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>ca.benow:jd</artifact>
|
|
<excludes>
|
|
<exclude>org/fife/**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>org.jf:baksmali</artifact>
|
|
<excludes>
|
|
<exclude>org/apache/commons/cli/**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>dex2jar:dex2jar</artifact>
|
|
<excludes>
|
|
<exclude>org/objectweb/asm/xml/Processor.class</exclude>
|
|
<exclude>org/objectweb/asm/util/TraceClassVisitor.class</exclude>
|
|
<exclude>org/objectweb/asm/util/CheckClassAdapter.class</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>com.fifesoft:rsyntaxtextarea</artifact>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
</filter>
|
|
</filters>
|
|
<minimizeJar>true</minimizeJar>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- Local repo -->
|
|
<repositories>
|
|
<repository>
|
|
<id>bytecode-viewer</id>
|
|
<name>Bytecode Viewer Repository</name>
|
|
<url>file:///libs/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.imgscalr</groupId>
|
|
<artifactId>imgscalr-lib</artifactId>
|
|
<version>4.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.janino</groupId>
|
|
<artifactId>janino</artifactId>
|
|
<version>RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fifesoft</groupId>
|
|
<artifactId>rsyntaxtextarea</artifactId>
|
|
<version>2.5.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.tinyjee.jgraphx</groupId>
|
|
<artifactId>jgraphx</artifactId>
|
|
<version>2.3.0.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.mp4parser</groupId>
|
|
<artifactId>isoparser</artifactId>
|
|
<version>1.1.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm-all</artifactId>
|
|
<version>5.0.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.zeroturnaround</groupId>
|
|
<artifactId>zt-zip</artifactId>
|
|
<version>1.8</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.bitbucket.mstrobel</groupId>
|
|
<artifactId>procyon-compilertools</artifactId>
|
|
<version>0.5.29</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bitbucket.mstrobel</groupId>
|
|
<artifactId>procyon-core</artifactId>
|
|
<version>0.5.29</version>
|
|
</dependency>
|
|
|
|
<!-- local libraries -->
|
|
<!-- TODO: Find a better way to reference local dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>com.strobel</groupId>
|
|
<artifactId>decompiler</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/procyon-decompiler-0.5.30.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jf</groupId>
|
|
<artifactId>smali</artifactId>
|
|
<version>2.0.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/smali-2.0.3-obf-patched.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.smali</groupId>
|
|
<artifactId>baksmali</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/baksmali-2.0.3_obf.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.benf</groupId>
|
|
<artifactId>cfr</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/cfr_0_115.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.benow</groupId>
|
|
<artifactId>jd</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/jd-gui-1.0.0-RC4.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>eu.bibl</groupId>
|
|
<artifactId>byteanalysis</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/byteanalysis-1.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut</groupId>
|
|
<artifactId>apktool</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/apktool_2.0.1_obf-2.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dex2jar</groupId>
|
|
<artifactId>dex2jar</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/dex_obf.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.java</groupId>
|
|
<artifactId>decompiler</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/fernflower-2016.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!-- TODO: only dep missing -->
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.jetbrains.java</groupId>-->
|
|
<!--<artifactId>decompiler</artifactId>-->
|
|
<!--<version>RELEASE</version>-->
|
|
<!--</dependency>-->
|
|
</dependencies>
|
|
</project> |