Skip to content

Commit f05db1e

Browse files
committed
build with scala 2.12 and scoverage 1.4.0
1 parent 924bf49 commit f05db1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sourceCompatibility = '1.8'
4545
targetCompatibility = '1.8'
4646

4747
dependencies {
48-
compileOnly "org.scoverage:scalac-scoverage-plugin_2.12:1.3.1"
48+
compileOnly "org.scoverage:scalac-scoverage-plugin_2.12:1.4.0"
4949
compile group: 'commons-io', name: 'commons-io', version: '2.6'
5050
testCompile 'junit:junit:4.12'
5151
testCompile 'org.hamcrest:hamcrest-library:1.3'

src/functionalTest/java/org.scoverage/ScoverageFunctionalTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private void configureArguments(String... arguments) {
122122
fullArguments.add("-PscalaVersionBuild=8");
123123
fullArguments.add("-PjunitVersion=5.3.2");
124124
fullArguments.add("-PjunitPlatformVersion=1.3.2");
125-
fullArguments.add("-PscalatestVersion=3.0.5");
125+
fullArguments.add("-PscalatestVersion=3.0.8");
126126
fullArguments.addAll(Arrays.asList(arguments));
127127

128128
runner.withArguments(fullArguments);

src/main/groovy/org/scoverage/ScoverageExtension.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ScoverageExtension {
4949
project.plugins.apply(ScalaPlugin.class)
5050

5151
scoverageVersion = project.objects.property(String)
52-
scoverageVersion.set('1.3.1')
52+
scoverageVersion.set('1.4.0')
5353

5454
scoverageScalaVersion = project.objects.property(String)
5555
scoverageScalaVersion.set('2.12')

0 commit comments

Comments
 (0)