Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
created all-pom.xml as an aggregator project that builds Robolectric …
…as well as the local project
  • Loading branch information
David Varvel and Phil Goodwin committed Feb 28, 2013
1 parent 066a091 commit 7ba4138
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions all-pom.xml
@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.pivotallabs</groupId>
<artifactId>androidintellijstarter-all</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>AndroidIntelliJStarter-ALL</name>
<description>Some extremely important project.</description>

<properties>
<robolectric.version>2.0-alpha-3-SNAPSHOT</robolectric.version>
</properties>

<dependencies>
<dependency>
<groupId>com.pivotallabs</groupId>
<artifactId>androidintellijstarter</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.robolectric</groupId>
<artifactId>robolectric</artifactId>
<version>${robolectric.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<modules>
<module>submodules/robolectric</module>
<module>.</module>
</modules>

<build>
<finalName>${project.artifactId}</finalName>

<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<sdk>
<!-- platform or api level (api level 4 = platform 1.6)-->
<platform>16</platform>
</sdk>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 7ba4138

Please sign in to comment.