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