File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed
Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -35,35 +35,35 @@ The Functional Java artifact is published to Maven Central using the group `org.
3535* Java 8 specific support (`functionaljava-java8`)
3636* property based testing (`functionaljava-quickcheck` or `functionaljava-quickcheck_1.8` if you use Java 8+)
3737
38- The latest stable version is `4.7 `. This can be added to your Gradle project by adding the dependencies:
38+ The latest stable version is `4.8 `. This can be added to your Gradle project by adding the dependencies:
3939----
40- compile "org.functionaljava:functionaljava:4.7 "
41- compile "org.functionaljava:functionaljava-java8:4.7 "
42- compile "org.functionaljava:functionaljava-quickcheck:4.7 "
43- compile "org.functionaljava:functionaljava-java-core:4.7 "
40+ compile "org.functionaljava:functionaljava:4.8 "
41+ compile "org.functionaljava:functionaljava-java8:4.8 "
42+ compile "org.functionaljava:functionaljava-quickcheck:4.8 "
43+ compile "org.functionaljava:functionaljava-java-core:4.8 "
4444----
4545
4646and in Maven:
4747----
4848<dependency>
4949 <groupId>org.functionaljava</groupId>
5050 <artifactId>functionaljava</artifactId>
51- <version>4.7 </version>
51+ <version>4.8 </version>
5252</dependency>
5353<dependency>
5454 <groupId>org.functionaljava</groupId>
5555 <artifactId>functionaljava-java8</artifactId>
56- <version>4.7 </version>
56+ <version>4.8 </version>
5757</dependency>
5858<dependency>
5959 <groupId>org.functionaljava</groupId>
6060 <artifactId>functionaljava-quickcheck</artifactId>
61- <version>4.7 </version>
61+ <version>4.8 </version>
6262</dependency>
6363<dependency>
6464 <groupId>org.functionaljava</groupId>
6565 <artifactId>functionaljava-java-core</artifactId>
66- <version>4.7 </version>
66+ <version>4.8 </version>
6767</dependency>
6868----
6969
Original file line number Diff line number Diff line change @@ -44,16 +44,16 @@ allprojects {
4444
4545 defaultTasks " build"
4646
47- ext {
48- isSnapshot = false
49- fjBaseVersion = " 4.8 "
47+ ext {
48+ isSnapshot = true
49+ fjBaseVersion = " 4.9 "
5050
5151 snapshotAppendix = " -SNAPSHOT"
5252 fjVersion = fjBaseVersion + (isSnapshot ? snapshotAppendix : " " )
53- fjConsumeVersion = " 4.7 "
53+ fjConsumeVersion = " 4.8 "
5454
5555 signModule = false
56- useRetroLambda = true
56+ useRetroLambda = false
5757
5858 projectTitle = " Functional Java"
5959 projectName = " functionaljava"
You can’t perform that action at this time.
0 commit comments