fixed up whitespace

git-svn-id: https://smali.googlecode.com/svn/trunk@149 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-06-14 01:28:32 +00:00
parent ad1085e32a
commit 5a0f83d156

View File

@ -7,9 +7,9 @@
<version>0.91-SNAPSHOT</version> <version>0.91-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<parent> <parent>
<groupId>org.jf</groupId> <groupId>org.jf</groupId>
<artifactId>smali-pom</artifactId> <artifactId>smali-pom</artifactId>
<version>0.91-SNAPSHOT</version> <version>0.91-SNAPSHOT</version>
</parent> </parent>
<build> <build>
<plugins> <plugins>
@ -17,7 +17,7 @@
<groupId>org.jf</groupId> <groupId>org.jf</groupId>
<artifactId>maven-smali-plugin</artifactId> <artifactId>maven-smali-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<id>junit-tests</id> <id>junit-tests</id>
<goals> <goals>
<goal>assemble</goal> <goal>assemble</goal>
@ -31,60 +31,61 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<phase>test</phase> <phase>test</phase>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
<configuration> <configuration>
<descriptors> <descriptors>
<descriptor>src/assemble/zip.xml</descriptor> <descriptor>src/assemble/zip.xml</descriptor>
</descriptors> </descriptors>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jvending.masa.plugins</groupId> <groupId>org.jvending.masa.plugins</groupId>
<artifactId>maven-adb-plugin</artifactId> <artifactId>maven-adb-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<phase>test</phase> <phase>test</phase>
<goals> <goals>
<goal>push</goal> <goal>push</goal>
</goals> </goals>
<configuration> <configuration>
<sourceFileOrDirectory>${project.build.directory}/${project.build.finalName}-zip.zip</sourceFileOrDirectory> <sourceFileOrDirectory>${project.build.directory}/${project.build.finalName}-zip.zip
<destinationFileOrDirectory>/data/local/test.zip</destinationFileOrDirectory> </sourceFileOrDirectory>
</configuration> <destinationFileOrDirectory>/data/local/test.zip</destinationFileOrDirectory>
</execution> </configuration>
</executions> </execution>
</plugin> </executions>
<plugin> </plugin>
<groupId>org.codehaus.mojo</groupId> <plugin>
<artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId>
<version>1.1</version> <artifactId>exec-maven-plugin</artifactId>
<executions> <version>1.1</version>
<execution> <executions>
<phase>test</phase> <execution>
<goals> <phase>test</phase>
<goal>exec</goal> <goals>
</goals> <goal>exec</goal>
</execution> </goals>
</executions> </execution>
<configuration> </executions>
<executable>adb</executable> <configuration>
<arguments> <executable>adb</executable>
<argument>shell</argument> <arguments>
<argument>dalvikvm</argument> <argument>shell</argument>
<argument>-cp</argument> <argument>dalvikvm</argument>
<argument>/data/local/junit-4.6.zip:/data/local/test.zip</argument> <argument>-cp</argument>
<argument>org/junit/runner/JUnitCore</argument> <argument>/data/local/junit-4.6.zip:/data/local/test.zip</argument>
<argument>AllTests</argument> <argument>org/junit/runner/JUnitCore</argument>
</arguments> <argument>AllTests</argument>
</configuration> </arguments>
</plugin> </configuration>
</plugins> </plugin>
</plugins>
</build> </build>
</project> </project>