scope-coverage-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.undefinedlabs.scope</groupId>
<artifactId>scope-coverage-tests</artifactId>
<version>0.15.1-beta.2</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">
<parent>
<groupId>com.undefinedlabs.scope</groupId>
<artifactId>scope-coverage</artifactId>
<version>0.15.1-beta.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scope-coverage-tests</artifactId>
<packaging>pom</packaging>
<name>Scope Coverage Tests</name>
<description>
Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly
identify, troubleshoot and fix failed builds.
This artifact contains Coverage Tests implementation for Scope.
</description>
<modules>
<module>scope-coverage-test-utils</module>
<module>scope-coverage-tests-e2e</module>
<module>scope-coverage-tests-java5</module>
<module>scope-coverage-tests-java7</module>
<module>scope-coverage-tests-java8</module>
</modules>
<dependencies>
<dependency>
<groupId>com.undefinedlabs.scope</groupId>
<artifactId>scope-coverage-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${scope.argLine}</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>scope</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<scope.argLine>-javaagent:../../../.scope/scope-agent.jar</scope.argLine>
</properties>
</profile>
</profiles>
</project>