scope-runner-junit4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.undefinedlabs.scope</groupId> <artifactId>scope-runner-junit4</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-runner</artifactId> <version>0.15.1-beta.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>scope-runner-junit4</artifactId> <packaging>jar</packaging> <name>Scope Runner for JUnit4</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 the classes to instrument the JUnit4 runner. </description> <dependencies> <dependency> <groupId>com.undefinedlabs.scope</groupId> <artifactId>scope-rule-junit4</artifactId> </dependency> <dependency> <groupId>com.undefinedlabs.scope</groupId> <artifactId>scope-runner-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.undefinedlabs.scope</groupId> <artifactId>scope-runner-testing</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>scope-runner-junit4-4_13-version</id> <properties> <junit.version>4.13</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_12-version</id> <properties> <junit.version>4.12</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_11-version</id> <properties> <junit.version>4.11</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_10-version</id> <properties> <junit.version>4.10</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_9-version</id> <properties> <junit.version>4.9</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_8_2-version</id> <properties> <junit.version>4.8.2</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_8_1-version</id> <properties> <junit.version>4.8.1</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_8_0-version</id> <properties> <junit.version>4.8</junit.version> </properties> </profile> <profile> <id>scope-runner-junit4-4_7-version</id> <properties> <junit.version>4.7</junit.version> </properties> </profile> </profiles> </project>