dex2jar/pom.xml
Panxiaobo b626ee0527 update NOTICE.txt
--HG--
branch : 0.0.9.x
2012-01-07 22:38:16 +08:00

63 lines
2.4 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>
</modules>
<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>
</plugins>
</build>
<properties>
<dex2jar.tools.version>0.0.0.3-SNAPSHOT</dex2jar.tools.version>
<dex2jar.ir.version>1.5-SNAPSHOT</dex2jar.ir.version>
<dex2jar.reader.version>1.8-SNAPSHOT</dex2jar.reader.version>
<dex2jar.translator.version>0.0.9.7-SNAPSHOT</dex2jar.translator.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>