aspectjutil-eventmanager-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.newmainsoftech</groupId>
<artifactId>aspectjutil-eventmanager-test</artifactId>
<version>2.1.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.newmainsoftech</groupId>
<artifactId>aspectjutil</artifactId>
<version>2.1.0</version>
</parent>
<artifactId>aspectjutil-eventmanager-test</artifactId>
<name>aspectjutil-eventmanager-test</name>
<description>Test module for testing aspectjutil-eventmanager module.</description>
<properties>
<update.javadoc>false</update.javadoc>
<!-- aspectjutil-eventmanager-test module does not have javadoc under CVS control.
Hence skip step of updating javadoc -->
</properties>
<scm>
<connection>scm:svn:http://aspectjutil.googlecode.com/svn/tags/aspectjutil-2.1.0/aspectjutil-eventmanager-test</connection>
<developerConnection>scm:svn:https://aspectjutil.googlecode.com/svn/tags/aspectjutil-2.1.0/aspectjutil-eventmanager-test</developerConnection>
<url>https://code.google.com/p/aspectjutil/source/checkout/tags/aspectjutil-2.1.0/checkout</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<!-- Needs 2.12 or higher for parallel=method option.
Note: 2.12 has bug on test property:
https://jira.codehaus.org/browse/SUREFIRE-827
http://jira.codehaus.org/browse/SUREFIRE-760
-->
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.12</version>
</dependency>
</dependencies>
<configuration>
<excludes>
<exclude>**/EventHandlerTestTemplate.java</exclude>
<exclude>**/EventManagerTestUtils.java</exclude>
</excludes>
<includes>
<include>**/*.java</include>
</includes>
<!-- Following settings need to avoid class loader getting dirty
by each test method execution -->
<parallel>method</parallel>
<perCoreThreadCount>true</perCoreThreadCount>
<threadCount>2</threadCount>
<useUnlimitedThreads>true</useUnlimitedThreads>
<forkMode>perthread</forkMode>
<!-- forkMode=none caused newly instantiated class loader object
won't be child of current class loader -->
<useSystemClassLoader>true</useSystemClassLoader>
<!-- useSystemClassLoader=false caused newly instantiated class loader object
won't be child of current class loader -->
<useManifestOnlyJar>true</useManifestOnlyJar>
<!-- useManifestOnlyJar=false caused newly instantiated class loader object
won't be child of current class loader -->
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>