Skip to content

Commit 0d43c4b

Browse files
authored
Merge pull request #96 from helmethair-co/bump-versions
chore: bump library versions
2 parents 40c73ee + 749d697 commit 0d43c4b

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

gradle-example/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ repositories {
77
}
88

99
dependencies {
10-
implementation "org.scala-lang:scala-library:2.12.8"
10+
implementation "org.scala-lang:scala-library:2.12.17"
1111

12-
testImplementation "org.scalatest:scalatest_2.12:3.2.0-M3"
13-
testImplementation "org.scalatest:scalatest-flatspec_2.12:3.2.0-M3"
14-
testImplementation "org.junit.platform:junit-platform-launcher:1.6.0"
15-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.6.0"
16-
testRuntimeOnly "co.helmethair:scalatest-junit-runner:0.1.11"
12+
testImplementation "org.scalatest:scalatest_2.12:3.2.13"
13+
testImplementation "org.scalatest:scalatest-flatspec_2.12:3.2.13"
14+
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
15+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
16+
testRuntimeOnly "co.helmethair:scalatest-junit-runner:0.2.0"
1717
}
1818

1919
test {

gradle-example/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Fri Mar 06 11:54:07 CET 2020
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

gradle-kotlin-dsl-example/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ repositories {
99
}
1010

1111
dependencies {
12-
implementation("org.scala-lang:scala-library:2.12.8")
12+
implementation("org.scala-lang:scala-library:2.12.17")
1313

14-
testImplementation("org.scalatest:scalatest_2.12:3.2.0-M3")
15-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.6.0")
16-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.6.0")
17-
testRuntimeOnly("co.helmethair:scalatest-junit-runner:0.1.11")
14+
testImplementation("org.scalatest:scalatest_2.12:3.2.13")
15+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
16+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
17+
testRuntimeOnly("co.helmethair:scalatest-junit-runner:0.2.0")
1818
}
1919

2020
tasks {

gradle-kotlin-dsl-example/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Fri Mar 06 11:54:07 CET 2020
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

maven-example/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
<properties>
1313
<java.version>1.8</java.version>
14-
<junit.version>1.6.0</junit.version>
15-
<scalatest.runner.version>0.1.11</scalatest.runner.version>
16-
<scalatest.version>3.2.0-M3</scalatest.version>
14+
<junit.version>1.9.1</junit.version>
15+
<scalatest.runner.version>0.2.0</scalatest.runner.version>
16+
<scalatest.version>3.2.13</scalatest.version>
1717
<scala.compat.version>2.13</scala.compat.version>
18-
<scala.version>2.13.1</scala.version>
19-
<scala.maven.plugin>4.4.0</scala.maven.plugin>
20-
<maven.surefire.version>3.0.0-M3</maven.surefire.version>
18+
<scala.version>2.13.9</scala.version>
19+
<scala.maven.plugin>4.7.1</scala.maven.plugin>
20+
<maven.surefire.version>3.0.0-M7</maven.surefire.version>
2121

2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
</properties>

scala-version-matrix/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'scala'
3-
id "com.adtran.scala-multiversion-plugin" version "1.0.35"
3+
id "com.adtran.scala-multiversion-plugin" version "2.0.4"
44
}
55

66
repositories {
@@ -10,7 +10,7 @@ repositories {
1010
dependencies {
1111
implementation "org.scala-lang:scala-library:%scala-version%"
1212

13-
testImplementation "org.scalatest:scalatest_%%:3.2.0-M3"
13+
testImplementation "org.scalatest:scalatest_%%:3.2.13"
1414
testRuntimeOnly "org.junit.platform:junit-platform-engine:$junit_platform_version"
1515
testRuntimeOnly "org.junit.platform:junit-platform-launcher:$junit_platform_version"
1616
testRuntimeOnly fileTree(dir: '../build/libs/', include: '*.jar')
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
scalaVersions=2.10.7, 2.11.12, 2.12.8, 2.13.1
2-
junit_platform_version=1.6.0
1+
scalaVersions=2.10.7, 2.11.12, 2.12.17, 2.13.9
2+
junit_platform_version=1.9.1

0 commit comments

Comments
 (0)