exoplatform.test.framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>exo</groupId>
<artifactId>exoplatform.test.framework</artifactId>
<version>1.0</version>
</dependency><project>
<modelVersion>4.0.0</modelVersion>
<groupId>exo</groupId>
<artifactId>exoplatform.test.framework</artifactId>
<name>eXo Mock Objects framework</name>
<version>1.0</version>
<ciManagement>
<notifiers>
<notifier>
<address>tuan.nguyen@exoplatform.com</address>
</notifier>
</notifiers>
</ciManagement>
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/Test*.java</include>
</includes>
<excludes>
<exclude>**/jvm15/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>exo</groupId>
<artifactId>exoplatform.commons</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>