scope-coverage-tests-java8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.undefinedlabs.scope</groupId>
<artifactId>scope-coverage-tests-java8</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-tests</artifactId>
<version>0.15.1-beta.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scope-coverage-tests-java8</artifactId>
<name>Scope Coverage Tests - Java8</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 for Java8 implementation for Scope.
</description>
<properties>
<bytecode.version>8</bytecode.version>
<maven.test.skip>${skip.coverage.java8.tests}</maven.test.skip>
<!--<sourcecode.main.version>1.8</sourcecode.main.version>-->
<sourcecode.test.version>1.8</sourcecode.test.version>
<!--<scope.main.version>1.8</scope.main.version>-->
<scope.test.version>1.8</scope.test.version>
</properties>
<dependencies>
<dependency>
<groupId>com.undefinedlabs.scope</groupId>
<artifactId>scope-coverage-test-utils</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${skip.coverage.java8.tests}</skipTests>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>