Browse Source

move junit to parent pom

tags/v0.1.8
Jonathan Cobb 4 years ago
parent
commit
50f17be964
2 changed files with 23 additions and 23 deletions
  1. +0
    -23
      bubble-server/pom.xml
  2. +23
    -0
      pom.xml

+ 0
- 23
bubble-server/pom.xml View File

@@ -345,29 +345,6 @@ For commercial use, please contact jonathan@kyuss.org
</executions> </executions>
</plugin> </plugin>


<!-- JUnit options -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
<includes>
<include>bubble.test.DbInit</include>
<include>bubble.test.AuthTest</include>
<include>bubble.test.PaymentTest</include>
<include>bubble.test.RecurringBillingTest</include>
<include>bubble.test.DriverTest</include>
<include>bubble.test.ProxyTest</include>
<include>bubble.test.TrafficAnalyticsTest</include>
<include>bubble.test.BackupTest</include>
<include>bubble.test.NetworkTest</include>
</includes>
</configuration>
</plugin>

</plugins> </plugins>


</build> </build>


+ 23
- 0
pom.xml View File

@@ -54,6 +54,29 @@ This code is available under the GNU Affero General Public License, version 3: h
<showWarnings>true</showWarnings> <showWarnings>true</showWarnings>
</configuration> </configuration>
</plugin> </plugin>

<!-- JUnit options -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
<includes>
<include>bubble.test.DbInit</include>
<include>bubble.test.AuthTest</include>
<include>bubble.test.PaymentTest</include>
<include>bubble.test.RecurringBillingTest</include>
<include>bubble.test.DriverTest</include>
<include>bubble.test.ProxyTest</include>
<include>bubble.test.TrafficAnalyticsTest</include>
<include>bubble.test.BackupTest</include>
<include>bubble.test.NetworkTest</include>
</includes>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>




Loading…
Cancel
Save