mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 21:29:57 +00:00
ab29c79c7a
--HG-- branch : 0.0.9.x
59 lines
2.3 KiB
XML
59 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>
|
|
<groupId>com.googlecode.dex2jar</groupId>
|
|
<artifactId>dex2jar</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>dex2jar</name>
|
|
<version>1.0</version>
|
|
<description>A tool for converting Android's .dex format to Java's .class format</description>
|
|
<url>http://code.google.como/p/dex2jar/</url>
|
|
|
|
<modules>
|
|
<module>dex-reader</module>
|
|
<module>dex-translator</module>
|
|
<module>dex-ir</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.0.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
<dex2jar.ir.version>1.2-dev</dex2jar.ir.version>
|
|
<dex2jar.reader.version>1.5-dev</dex2jar.reader.version>
|
|
<dex2jar.translator.version>0.0.9.4-SNAPSHOT</dex2jar.translator.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project> |