dex2jar/pom.xml
Panxiaobo ab29c79c7a add version to pom.xml
--HG--
branch : 0.0.9.x
2011-11-24 20:51:31 +08:00

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>