mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 13:19:46 +00:00
140 lines
5.2 KiB
XML
140 lines
5.2 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 .dex format to Java .class format</description>
|
|
<url>http://code.google.como/p/dex2jar/</url>
|
|
|
|
<modules>
|
|
<module>dex-reader</module>
|
|
<module>dex-translator</module>
|
|
<module>dex-ir</module>
|
|
<module>dex-tools</module>
|
|
<module>commons-lite</module>
|
|
</modules>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.8</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<show>public</show>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<optimize>true</optimize>
|
|
<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>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.8</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<show>public</show>
|
|
<nohelp>true</nohelp>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<configuration>
|
|
<target>
|
|
<taskdef
|
|
resource="net/sf/antcontrib/antcontrib.properties"
|
|
classpathref="maven.plugin.classpath" />
|
|
<if>
|
|
<available file=".hg/hgrc" />
|
|
<then>
|
|
<echo>call hg kwexpand</echo>
|
|
<echo file=".hg/hgrc">
|
|
<![CDATA[
|
|
[paths]
|
|
default = https://dex2jar.googlecode.com/hg
|
|
[extensions]
|
|
keyword =
|
|
[keyword]
|
|
**.java =
|
|
[keywordmaps]
|
|
Rev = {node|short}
|
|
]]>
|
|
</echo>
|
|
<exec executable="hg">
|
|
<arg value="kwexpand" />
|
|
</exec>
|
|
</then>
|
|
</if>
|
|
</target>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ant-contrib</groupId>
|
|
<artifactId>ant-contrib</artifactId>
|
|
<version>1.0b3</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
<dex2jar.tools.version>0.0.0.6</dex2jar.tools.version>
|
|
<dex2jar.ir.version>1.8</dex2jar.ir.version>
|
|
<dex2jar.reader.version>1.11</dex2jar.reader.version>
|
|
<dex2jar.translator.version>0.0.9.10</dex2jar.translator.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|