Skip to content

Commit b5b852d

Browse files
committed
Updated version to 4.2, updated gradle retrolambda version
1 parent be6f832 commit b5b852d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ if (JavaVersion.current().isJava8Compatible()) {
1515
allprojects {
1616

1717
ext {
18-
isSnapshot = true
19-
fjBaseVersion = "4.2-beta-2"
18+
isSnapshot = false
19+
fjBaseVersion = "4.2"
2020

2121
snapshotAppendix = "-SNAPSHOT"
2222
fjVersion = fjBaseVersion + (isSnapshot ? snapshotAppendix : "")
@@ -57,7 +57,7 @@ subprojects {
5757
}
5858

5959
dependencies {
60-
classpath 'me.tatarka:gradle-retrolambda:1.3.1'
60+
classpath 'me.tatarka:gradle-retrolambda:2.5.0'
6161
}
6262
}
6363

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
apply plugin: 'retrolambda'
2+
apply plugin: 'me.tatarka.retrolambda'
33

44
ext {
55
signModule = true

demo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
apply plugin: 'application'
3-
apply plugin: 'retrolambda'
3+
apply plugin: 'me.tatarka.retrolambda'
44

55
mainClassName = "fj.demo.euler.Problem2"
66

0 commit comments

Comments
 (0)