Home | History | Annotate | Download | only in smali
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      4     <modelVersion>4.0.0</modelVersion>
      5     <groupId>org.jf</groupId>
      6     <artifactId>smali-pom</artifactId>
      7     <version>1.0-SNAPSHOT</version>
      8     <packaging>pom</packaging>
      9     <properties>
     10         <aversion>1.2.9-dev</aversion>
     11     </properties>
     12     <build>
     13         <plugins>
     14             <plugin>
     15                 <groupId>org.apache.maven.plugins</groupId>
     16                 <artifactId>maven-compiler-plugin</artifactId>
     17                 <configuration>
     18                     <source>1.5</source>
     19                     <target>1.5</target>
     20                 </configuration>
     21             </plugin>
     22         </plugins>
     23     </build>
     24     <modules>
     25         <module>dexlib</module>
     26         <module>smali</module>
     27         <module>baksmali</module>
     28         <module>util</module>
     29         <module>maven-smali-plugin</module>
     30         <module>smali-integration-tests</module>
     31     </modules>
     32 </project>
     33