Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ subprojects {
}
}

configure(subprojects) {
configure(subprojects.findAll { it.name != "props-core" }) {

apply plugin: "maven"
apply plugin: "signing"
Expand Down
1 change: 0 additions & 1 deletion core/src/test/java/fj/data/BooleansTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import fj.F;
import fj.function.Booleans;
import fj.test.Property;
import org.junit.Assert;
import org.junit.Test;

Expand Down
1 change: 1 addition & 0 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ retrolambda {

dependencies {
compile project(":core")
compile project(":quickcheck")
testCompile dependencyJunit
}
File renamed without changes.
13 changes: 13 additions & 0 deletions props-core/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

apply plugin: 'me.tatarka.retrolambda'

retrolambda {
jdk System.getenv("JAVA8_HOME")
oldJdk System.getenv("JAVA7_HOME")
javaVersion JavaVersion.VERSION_1_7
}

dependencies {
compile project(":quickcheck")
testCompile dependencyJunit
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package fj.data.properties;

import fj.Equal;
import fj.P;
import fj.P2;
import fj.data.List;
import fj.runner.PropertyTestRunner;
import fj.test.runner.PropertyTestRunner;
import fj.test.Gen;
import fj.test.Property;
import org.junit.runner.RunWith;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import fj.P2;
import fj.data.List;
import fj.data.NonEmptyList;
import fj.runner.PropertyTestRunner;
import fj.test.runner.PropertyTestRunner;
import fj.test.Property;
import org.junit.runner.RunWith;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import fj.P2;
import fj.data.Option;
import fj.data.Seq;
import fj.runner.PropertyTestRunner;
import fj.test.runner.PropertyTestRunner;
import fj.test.Arbitrary;
import fj.test.Gen;
import fj.test.Property;
Expand Down
15 changes: 15 additions & 0 deletions quickcheck/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

apply plugin: 'me.tatarka.retrolambda'

archivesBaseName = "${project.projectName}-${project.name}"

retrolambda {
jdk System.getenv("JAVA8_HOME")
oldJdk System.getenv("JAVA7_HOME")
javaVersion JavaVersion.VERSION_1_7
}

dependencies {
compile project(":core")
compile dependencyJunit
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fj.runner;
package fj.test.runner;

import org.junit.runner.Description;
import org.junit.runner.Runner;
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

rootProject.name = "functionaljava"

include 'core', 'demo', "tests", "consume", "java8"
include "core", "demo", "consume", "java8", "quickcheck", "props-core", "props-core-scalacheck"