Robolectric。 Maven OutOfMemoryError:超出GC开销限制

时间:2013-03-14 11:16:19

标签: unit-testing maven robolectric android-testing

为什么当我将我的pom.xml依赖项添加到Robolectric库时,我得到OutOfMemoryError:超出GC开销限制?

我的依赖:

         <dependency>
             <groupId>com.pivotallabs</groupId>
             <artifactId>robolectric</artifactId>
             <version>1.2</version>
         </dependency>

当我删除它一切正常。 当我向android-maven-plugin下一个字符串添加它没有意义时

        <dexJvmArguments>
            <argument>-Xmx1500m</argument>
        </dexJvmArguments>

1 个答案:

答案 0 :(得分:1)

感谢Aaron VonderHaar。 Answer on my question