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

47 lines
1.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>
<parent>
<groupId>com.googlecode.dex2jar</groupId>
<artifactId>dex2jar</artifactId>
<version>1.0</version>
</parent>
<artifactId>dex-reader</artifactId>
<version>${dex2jar.reader.version}</version>
<name>Dex Reader</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>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0</version>
</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>
<Implementation-Build>${maven.build.timestamp}</Implementation-Build>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>