mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 13:19:46 +00:00
ab29c79c7a
--HG-- branch : 0.0.9.x
77 lines
2.3 KiB
XML
77 lines
2.3 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.googlecode.dex2jar</groupId>
|
|
<artifactId>dex2jar</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
|
|
<artifactId>dex-translator</artifactId>
|
|
<version>${dex2jar.translator.version}</version>
|
|
<name>Dex Translator</name>
|
|
<description>A tool for converting Android's .dex format to Java's .class format</description>
|
|
<url>http://code.google.como/p/dex2jar/</url>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.googlecode.dex2jar</groupId>
|
|
<artifactId>dex-reader</artifactId>
|
|
<version>${dex2jar.reader.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.dex2jar</groupId>
|
|
<artifactId>dex-ir</artifactId>
|
|
<version>${dex2jar.ir.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Main-Class>com.googlecode.dex2jar.v3.Main</Main-Class>
|
|
<Implementation-Build>${maven.build.timestamp}</Implementation-Build>
|
|
</manifestEntries>
|
|
</archive>
|
|
<excludes>
|
|
<exclude>*.bat</exclude>
|
|
<exclude>*.sh</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.2-beta-5</version>
|
|
<configuration>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<descriptors>
|
|
<descriptor>src/main/assemble/package.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |