mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 05:47:46 +01:00
97 lines
3.1 KiB
XML
97 lines
3.1 KiB
XML
|
|
<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>
|
|
|
|
<groupId>brut.apktool</groupId>
|
|
<artifactId>apktool-lib</artifactId>
|
|
<version>1.3.3-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>brut.apktool</groupId>
|
|
<artifactId>apktool-project</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>apktool library</name>
|
|
|
|
<properties>
|
|
<smaliVersion>1.2.6-brut5</smaliVersion>
|
|
<root.basedir>${project.parent.basedir}</root.basedir>
|
|
</properties>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.mycila.maven-license-plugin</groupId>
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>src/main/java/com/mindprod/**</exclude>
|
|
<exclude>src/main/java/android/**</exclude>
|
|
<exclude>src/test/resources/brut/apktool/testapp/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>brut.j</groupId>
|
|
<artifactId>dir</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut.j</groupId>
|
|
<artifactId>util</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut.j</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut.apktool.smali</groupId>
|
|
<artifactId>smali</artifactId>
|
|
<version>${smaliVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut.apktool.smali</groupId>
|
|
<artifactId>baksmali</artifactId>
|
|
<version>${smaliVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>brut.apktool.smali</groupId>
|
|
<artifactId>util</artifactId>
|
|
<version>${smaliVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xpp3</groupId>
|
|
<artifactId>xpp3</artifactId>
|
|
<version>1.1.4c</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xmlunit</groupId>
|
|
<artifactId>xmlunit</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|