Skip to content

Commit 1c691c3

Browse files
author
Jegors Čemisovs
committed
Update version of Spock
1 parent 62a9f86 commit 1c691c3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

algorithm/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java-library'
44
id 'maven-publish'
55
id 'jacoco'
6-
id 'org.sonarqube' version '3.3'
6+
id 'org.sonarqube' version '3.4.0.2513'
77
}
88

99
sonarqube {
@@ -55,16 +55,16 @@ publishing {
5555

5656
dependencies {
5757
// Spock Framework
58-
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
59-
testImplementation 'org.codehaus.groovy:groovy-all:3.0.9'
58+
testImplementation 'org.spockframework:spock-core:2.2-groovy-3.0'
59+
testImplementation 'org.codehaus.groovy:groovy-all:3.0.12'
6060

6161
// Spock Reports
62-
testRuntimeClasspath( "com.athaydes:spock-reports:2.1.1-groovy-3.0" ) {
62+
testRuntimeClasspath('com.athaydes:spock-reports:2.3.1-groovy-3.0') {
6363
transitive = false // this avoids affecting your version of Groovy/Spock
6464
}
6565
// Required for spock-reports
66-
testImplementation 'org.slf4j:slf4j-api:1.7.32'
67-
testRuntimeClasspath 'org.slf4j:slf4j-simple:1.7.32'
66+
testImplementation 'org.slf4j:slf4j-api:2.0.1'
67+
testRuntimeClasspath 'org.slf4j:slf4j-simple:2.0.1'
6868
}
6969

7070
test {
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015-2021 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -32,10 +32,10 @@
3232
# Busybox and similar reduced shells will NOT work, because this script
3333
# requires all of these POSIX shell features:
3434
# * functions;
35-
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36-
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37-
# * compound commands having a testable exit status, especially «case»;
38-
# * various built-in commands including «command», «set», and «ulimit».
35+
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36+
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37+
# * compound commands having a testable exit status, especially «case»;
38+
# * various built-in commands including «command», «set», and «ulimit».
3939
#
4040
# Important for patching:
4141
#

0 commit comments

Comments
 (0)